Making a quick random number
Key words and phrases:
PHP random digit
quick number
Description & Info:
Not truly random in some cosmic computer science sense, but good enough for non-mission critical (or rather, nothing for anyone to exploit the not-complete-randomness) uses.
http://www.php-scripts.com/php_diary/122799.php3
<?php
srand(time());
$random = (rand()%9);
?>
Post new comment
