Your thumbnails page would be coded just as any other page on your site, you just reference the images via the image script.
eg (html mark-up).
if you are piping many images through the one script, as you are, you would obviously need to append the query string arguments onto the path, that would be used by your script to determine which image to display.Code:<img src="display_image.php" title="my image" />
You could further clean up all the paths visually using URL rewriting, but that is one for another thread.
so, you may end up with something like this:
Code:<ul id="thumbnails"> <li> <img src="display_image.php?id=1" title="one image" /> </li> <li> <img src="display_image.php?id=2" title="another image" /> </li> <li> <img src="display_image.php?id=3" title="last image" /> </li> </ul>


Reply With Quote
Bookmarks