Source Code:
(back to article)
<?php // Seed the random number generator using the srand() function srand(123); // Generate a random number using the rand() function $result = rand(); // Output the result echo $result; ?>
Result:
Report an issue