Skip to content

Instantly share code, notes, and snippets.

@alisonmf
Last active September 26, 2015 14:28
Show Gist options
  • Save alisonmf/1111791 to your computer and use it in GitHub Desktop.
Save alisonmf/1111791 to your computer and use it in GitHub Desktop.
quick pick florida lotto
<html>
<head>
<title>Random Numbers!</title>
</head>
<body>
<?php
//Random Numbers Script
//random function and its variables
$n1 = rand (1, 53);
$n2 = rand (1, 53);
$n3 = rand (1, 53);
$n4 = rand (1, 53);
$n5 = rand (1, 53);
$n6 = rand (1, 53);
//print out the numbers
print "Your Lucky Lotto Numbers today are: <br /><br />
<pre>$n1 $n2 $n3 $n4 $n5 $n6</pre>";
?>
</body>
</html>
@alisonmf
Copy link
Author

i made this in highschool, ~7 years ago?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment