Hi I have a web site that i am creating for my local junior cricket club.
The issue that I am having is that I need to have a a photo gallery that will display images of trips, presentation nights etc.
So if anyone knows of a good photo gallery script that wont watermark my pictures that would be greatly appreciated.
Also if anyone has any ideas how i can make a photo rotator for the home page so a random picture will appear as the page is opened.
Thanks heaps
| |
|
Welcome to KnowledgeSutra - Dear Guest | |
Photo's On Web Site
Started by nid2210, Sep 13 2010 01:57 AM
1 reply to this topic
#2
Posted 15 September 2010 - 08:44 AM
here is a link for some photo galleries i hope it will be good for you
http://www.smashingm...ows-lightboxes/
and here is a script i tested before for banner rotater, this code will be in a separate php file, for example banner.php
and you must use the include function to call banner.php
good luck.
http://www.smashingm...ows-lightboxes/
and here is a script i tested before for banner rotater, this code will be in a separate php file, for example banner.php
<?php
$Img1 ="path image1 ";
$Img2 ="path image2 ";
$Img3 ="path image3 ";
$num = rand (1,3);
$Image = ${'Img'.$num};
Print "<img src=\"".$Image."\" >";
?>
and you must use the include function to call banner.php
<?php include("banner.php");?>
good luck.
Reply to this topic

1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users














