Hi, ill show you how to use 'mt_rand' 'srand' and a really complicated one that makes hexadecimal numbers.
lets start off with the 'mt_rand' function.
//Minimum number
$min = 1;
//Maximum number
$max = 100;
//Put mt_rand into a variable
$random = mt_rand($min, $max);
echo "Our random...