Source Code:
(back to article)
<?php // Generate a random integer between 1 and 100 using the mt_rand() function $result = mt_rand(1, 100); // Output the result echo $result; ?>
Result:
Report an issue