PHP Program to Generate a random number between 10 and 100

You can generate a random number between 10 and 100 in PHP using the `rand()` function with two arguments. The first argument is the minimum value (10) and the second argument is the maximum value (100).

Here's an example :
Program :
<?php
$random = rand(10, 100);
echo "The random number between 10 and 100 is $random\n";
?>
Output :
The random number between 10 and 100 is 71