Source Code:
(back to article)
<?php // Get the maximum random value using the getrandmax() function $max_random_value = getrandmax(); // Output the maximum random value echo $max_random_value; ?>
Result:
Report an issue