Hello, Im looking to create a site to rotate through a database of images, one image per day. I would like to do this without renaming the images, but I have no clue where to start? Im looking for a few ideas to get started.
Thanks! Shawn
one way would be to create a db with two fields one the name of the image the second the date you want it sown on. Then loop through the db checking if $row['date'] == todays_date then echo <img src=$row['picture']>
or something like that hope it helps Al