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