Call me a noob, but is there a way to use just PHP to create a photo slideshow? Or do you need to use flash? I have code that will display images in a random sequence, which is fine.
<?php
$pic = rand(1,15);
print "<img src=\"images/$pic.jpg\" height=\"100\" width=\"140\" />";
?>
But this is in the middle of other elements on a web page. So I need to find a way to make the images change without refreshing the page.
Thanks in advance.