Go Back   WM Voice Forum > Coding Walkway > PHP, CGI and ASP
User Name
Password
Reply
 
Thread Tools Search this Thread
PHP Tutorials :: Random Images Tutorial
Old 11-13-2004, 09:01 AM   Warn webgear · View webgear's Warnings · #1
webgear
Registered PLUS
 
webgear's Avatar
 
webgear is Offline:
Trader Rating: (0)
Style:
Posts: 25
WO Dollars: $32.00
webgear is on thier way up
Send a message via AIM to webgear
Country: Bulgaria
Default PHP Tutorials :: Random Images Tutorial

Step 1.
First Make these files:

- random.txt
- random.php

Now open your random.txt and do the following to display your pictures:

<img src="image1.gif">
<img src="image2.gif">
etc...

If you want to add a link to your images (e.g. Banner Advertising) , just do the following

<a href="linkhere.php"><img src="image.gif" border="0"></a>
<a href="linkhere2.php"><img src="image2.gif" border="0"></a>
ect...

Step 2.
Now open your random.php and add the code below to it:

<?php

$random = "random.txt";

$fp = file($random);
srand((double)microtime()*1000000);
$rl = $fp[array_rand($fp)];
echo $rl;
?>

Step 3.
Now copy the code below and add it to any page you desire to display your random images. Remember this will only work if the page its on has a .php extension.

<?php include("random.php"); ?>

And There You Go! Have Fun!
  Reply With Quote
Old 11-20-2004, 08:44 PM   Warn [Travis] · View [Travis]'s Warnings · #2
[Travis]
Registered PLUS
 
[Travis]'s Avatar
 
[Travis] is Offline:
Trader Rating: (0)
Style:
Posts: 56
WO Dollars: $2.00
[Travis] is on thier way up
Country: Trinidad and Tobago
Default

Nice nice. have you use this before?
  Reply With Quote
Old 11-20-2004, 10:08 PM   Warn webgear · View webgear's Warnings · #3
webgear
Registered PLUS
 
webgear's Avatar
 
webgear is Offline:
Trader Rating: (0)
Style:
Posts: 25
WO Dollars: $32.00
webgear is on thier way up
Send a message via AIM to webgear
Country: Bulgaria
Default

Yes...It's sipmle to use
  Reply With Quote
Old 11-22-2004, 01:50 AM   Warn Steve · View Steve's Warnings · #4
Steve
WMT Addict PLUS
 
Steve is Offline:
WMT Contributor
Trader Rating: (0)
Style:
Posts: 911
WO Dollars: $90.00
Steve is quite well known
Country: United States
Default

Hmm. Nice and simple, the way I like it.
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump