Generate random number in the range:
Min:
Max:
_END;
}
function processForm( )
{
if (isset($_POST['generateButton'])) {
$minInput = $_POST['minInput'];
$maxInput = $_POST['maxInput'];
echo "Random number in range [$minInput, $maxInput]: ";
echo rand($minInput, $maxInput);
}
}
?>