Using this small script you can create random numbers and display them where you want to on your site.
Just add this simple code to your web page where you would like it to appear;
Code:
<?php
$rand = rand(0, 50);
echo "Random Number: $rand";
?>
0 is the lowest number that can be generated, you can change this to what ever number you would like to be the lowest.
50 is the highest number that can be generated, you can change this to what ever number you would like to be the highest.
If you liked this tutorial, please click the link in my sig and go to my site to find may others.