It isn't possible to be certain from what you've told us what the problem is. I think it might be that the images are "showing up", just that they aren't getting displayed on the page due to some layout issue(s).
This can be checked in a browser like Firefox using its developer extension and DOM inspector. There you can see if the images are there in the generated source code or not. And if so, whether or not the paths are correct.
You must be viewing the page on your localhost server, otherwise none of the PHP stuff will work, and it has to have all of the required functions enabled. You could also try viewing the products/getalbumpics.php?id=products page directly in Firefox via the localhost server to see if it contains the expected array of images, and if the baseurl path is correct there. It should look something like (but with your images and baseurl as well as your variable name):
Code:
var europe={
baseurl: "http://www.dynamicdrive.com/dynamicindex4/phpgallery/set2/",
images: [
[0, "arc.jpg", "Aug 05, 2009 22:12:41"],
[1, "castle.jpg", "Aug 05, 2009 22:12:42"],
[2, "castle2.jpg", "Aug 05, 2009 22:12:43"],
[3, "milkwagon.jpg", "Aug 05, 2009 22:12:44"],
[4, "mountain.jpg", "Aug 05, 2009 22:12:45"],
[5, "riverhouses.jpg", "Aug 05, 2009 22:12:46"],
[6, "torbole.jpg", "Aug 05, 2009 22:12:47"],
[7, "venice.jpg", "Aug 05, 2009 22:12:48"],
[8, "windmill.jpg", "Aug 05, 2009 22:12:49"],
["placeholder"]
],
desc: []
}
To really diagnose something like this I would need to see a live installation which exhibits the problem.
If you want more help, please put the page up live somewhere on a PHP enabled server and post a link to it.
Bookmarks