View Single Post
Old 04-16-2008, 08:45 PM   #5 (permalink)
SabrinaDeep
Is Aga really Little Buddha?
 
SabrinaDeep's Avatar
 
Join Date: Aug 2006
Posts: 500
Points: 390
Send a message via ICQ to SabrinaDeep
Surely you can, althought you might have problems of speed in loading the page, but that depends on your server resources, really.

You can even fish different pics from the same package of pictures, simply creating more istances of both index.php and thumbs.php and just adding a number. For example if you wanna have two different pics of the day on the same page, fishing from the same set of pics, create a duplicate of both index.php and thumbs.php and on each of them substitute

Quote:
$today=date('d');
with

Quote:
$today=date('d')+5;
if ($today > "31") {
$today='1';
}
Now on your webpage you can add

Quote:
<a href="http://www.yoursite.com/potd/index.php><img src="http://www.yoursite.com/potd/thumbs.php" border=0 alt="WHATEVER ALTERNATE TEXT YOU WANNA PUT HERE"></a>
<br>
<a href="http://www.yoursite.com/potd/index1.php><img src="http://www.yoursite.com/potd/thumbs1.php" border=0 alt="WHATEVER ALTERNATE TEXT YOU WANNA PUT HERE">
This way, thumbs.php and thumbs1.php fish the picture named with today's date and the picture named with today's date + 5. When the result is greater than 31, it picks the picture named t_1.jpg

Or if you want to have 3 potd fishing from the same package you can do the above and create a third istance of both thumbs.php and index.php and substitute:

Quote:
$today=date('d');
with

Quote:
$today=date('d')+10;
if ($today > "31") {
$today='1';
}
and add

Quote:
<a href="http://www.yoursite.com/potd/index.php><img src="http://www.yoursite.com/potd/thumbs.php" border=0 alt="WHATEVER ALTERNATE TEXT YOU WANNA PUT HERE"></a>
<br>
<a href="http://www.yoursite.com/potd/index1.php><img src="http://www.yoursite.com/potd/thumbs1.php" border=0 alt="WHATEVER ALTERNATE TEXT YOU WANNA PUT HERE">
<br>
<a href="http://www.yoursite.com/potd/index2.php><img src="http://www.yoursite.com/potd/thumbs2.php" border=0 alt="WHATEVER ALTERNATE TEXT YOU WANNA PUT HERE">
to your webpage where you wanna show the potd thumbs and so on. Which such system i would not encourage to add more than 4 potd fishing from the same package of pics, if you use the 31 pictures system. If you use the 365 pics ystem you can add many more.

Hope it's clear.
SabrinaDeep is offline   Reply With Quote Send a private message to SabrinaDeep