+ 1
I'm trying to figure this out.. random number generator..
I'm trying to make it so it throws dice and gets a random number from 1 to 100, like gambling in EverQuest. https://code.sololearn.com/wscWR46Na4X5/?ref=app
1 Réponse
+ 3
<!doctype html>
<html>
<?php
echo "rolls the dice for a..";
$min = 1;
$max = 100;
echo rand($min, $max);
?>
</html>
write this