Skip to content

Instantly share code, notes, and snippets.

Created July 4, 2011 03:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/1062883 to your computer and use it in GitHub Desktop.
Save anonymous/1062883 to your computer and use it in GitHub Desktop.
<title>Laugh</title><?php
$file = "output.txt";
$number = "a";
$number2 = "z";
$yes = array('file', 'number', 'number2');
$file = fopen('/output.txt', 'w', 'a');
fwrite($file, $yes);
while ($number<=$number2)
{
echo $number."<br>";
$number++;
}
fclose($file);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment