[FONT=verdana][SIZE=2][COLOR=#000000] Hi, I’m trying to display dynamic JPG, GIF, PNG’s from my database using php. Sorta at a loss. I checked the Flash “HELP” for a while but came up with nothing that worked. Also googled everything about “images, Flash, PHP” and "Dynamically displaying images in flash. Came up with nothing. Maybe I’m a bad googler but…
anyhow below is my simple PHP that shows an image when looked at in browser. I’ve tried several ways to display it in flash. It works nice if I just place the server location of my actual pic in a “loader Component”, But I need it PHP-Dynamic.
~thanks for any help [/COLOR][/SIZE][/FONT]
<?php
session_start();
?>
<html>
<body>
<img src=“user_files/thumbnail1/<?php echo $_SESSION[‘thumb_1’];?>”/>
</body>
</html>
[FONT=verdana][SIZE=2][COLOR=#000000]
Maybe someone could show me a function in flash that will display the pics using “for loop” from php database, thanks [/COLOR][/SIZE][/FONT]