A blog & community for non-professional web designers, programmers, webmasters, and other web savvies.

Generate Random Number

February 28, 2011 - 12:00am -- Thomas

This script will generate a random number. You can also set the minimum and maximum number to be generated.

<?php
/*****************
--Generate Random Number
--More PHP Scripts at
--http://icecaves.net/tags/php
*****************/
$min_num = "1";
$max_num = "1000";
$number = rand($min_num, $max_num);
echo
"Number Generated: " .$number;
?>
Code Preview: 
Number Generated: 318
Tags: 
Forum Board: 

@IceCaves on Twitter

    Stay Connected

    Twitter Facebook Tumblr Google+ Glaciallis Google RSS

    *Follow us on Twitter or Facebook to also follow minor site updates that don't make it to the homepage news.