rand()` function with two arguments. The first argument is the minimum value (10) and the second argument is the maximum value (100).<?php
$random = rand(10, 100);
echo "The random number between 10 and 100 is $random\n";
?>The random number between 10 and 100 is 71