Navigation :

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Blog
Books
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links




Site Sponsors :

Bookmark :

Links :

dropshippers
programmershelp
domain names

Downloads :

Misc :

Webmaster Resources
Only PHP
ScriptSearch.com
Scripts.com - Get the best scripts NOW!
AndreaPHP Programming

Valid XHTML 1.0 Transitional


Valid CSS!




Random URLs

Display a random link on your site

<?php
$urls = array("http://asp.programmershelp.co.uk" ,
"http://vwww.programmershelp.co.uk" ,
"http://javascript.programmershelp.co.uk" );
$titles = array("ASP site" ,
"VBScript site" ,
"Javascript site");
//generate a random number
srand(time());
$random = (rand()%3);
//display link
echo ("<a href = \"$urls[$random]\">$titles[$random]</a>");
?>