Making a quick random number
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);
?>
Reply
