I was interested in how I can order these variables in order, lowest to highest...
$number1 = rand(1, 6);
$number2 = rand(1, 6);
$number3 = rand(1, 6);
This is like rolling three dice and then ordering them like 1, 2, 3, or 1, 3, 5, etc. I want to echo them out in whatever order is lowest to highest.