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