Gossamer Forum
Home : Products : DBMan : Customization :

thumbnail link to big image

Quote Reply
thumbnail link to big image
I saw many threads about it, but my answer was not there, so here is my problem;
I installed the multiple-image-upload (thanks to Karen) but the images appear after each other. I want to upload a thumnail and a big picture. In the search results we should see only the thumnail, and when clicked on the thumnail, it should open a new popup window with it's own name (this way people can leave the pictures they want to see open).

Now the scripts says;

foreach $file (@files) {
next if ($file =~ /^\./); # Skip "." and ".." entries..
next if ($file =~ /^index/); # Skip index.htm type files..
++$num_files;
@stats = stat "$SAVE_DIRECTORY/$rec{$db_key}/$file";
$prev_bytes +=$stats[7];

So it reads the entire folder and displays them after each other.
Q; how to make a thumnail and the linked, in a new popup-window, big image.
If this new popup-window doesn't work then I would be satisfied if the big image could appear in a different frame.
Thanks for any help...