Click to See Complete Forum and Search --> : picture on web page


dmcfreestyle
10-03-2006, 02:48 AM
i was curious if anyone could tell me how to make a photo gallery so that when you click on the picture they will become larger on an html based web page.

Welshsteve
10-03-2006, 05:18 AM
There are loads of scripts, sites, software programs dedicated to this. It all depends on the look you are after. Google keywords such as "web based photo album software" and you'll find loads of resources dedicated to this.

Znupi
10-03-2006, 05:23 AM
<img src="http://www.example.com/yourImage.gif" width="100" height="100" onClick="this.width='300'; this.height='300'">
That's the basic idea, you will have to make it a little more complex...

GSZX1337
10-03-2006, 09:55 AM
<img src="http://www.example.com/yourImage.gif" width="100" height="100" onClick="this.width='300'; this.height='300'">
That's the basic idea, you will have to make it a little more complex...
That's a gooden.

Welshsteve
10-04-2006, 08:39 AM
You could try Coppermine Photo Gallery (http://coppermine-gallery.net/index.php)

notsleepy
10-13-2006, 04:46 PM
hi, newbie so be gentle!
searching through the post here, i think this seems the nearest to what i'm after! anyone reading it for the first time will see it's connection!! and rather than starting a new thread i thought it might nest comfortably together, forgive me if this is not the done thing. - at least it's not off topic!!

i have an html form, when it is returned to and/or refreshed i want a new picture to load
__________________

how do i swap this

<html>
<p><img border="0" src="../folder1/folder2/MyOnePicture.JPG" width="30" height="40"></p>
</html>

for something like this

<?php
{
$randpicture = rand(10,99)
$newpicture = "../folder1/folder2/".$randpicture.".JPG"
?>
}



<html>
<p><img border="0" src= $newpicture width="30" height="40"></p>
</html>

__________________

i would like it to happen without a mouseclick on a button.

notsleepy
10-15-2006, 05:38 PM
Okay!
Do I interpret the lack of response as "don't know" or "don't know!"

Surely someone has something to say!

Perhaps it's the wrong forum to ask!

elooo ? any body there ! :D