Kiran Venkatesh - 2007-10-05 19:44:29
Hi
i have been trying to add an image array from a database to the slideshow class, but have been constantly frustrated. I am able to retreive the images and print them using an echo, with no problems. but i am just not able to create the slide show. i have written my script in php.
foreach ($output as $photo) {
$big=$photo['src_big'];//ECHO FOR THIS PRINTS IMAGES
$small=$photo['src_small'];
$movie = new flashSlideShow(300, 225, 3, '#FFFFFF');
$myfile = array();
$movie->addImages($photo['src_small']);
$movie->output();
}
i do not know how to proceed. any help is very much appreciated.
Thank you