This commit is contained in:
2019-06-30 20:13:22 +02:00
parent f6622b65c3
commit 08d32944cf

View File

@@ -17,7 +17,7 @@ echo <<<END
<form action="/hangman-guess.php" method="post">
END;
//Output all buttons
$alphabet = range('A', 'Z'));
$alphabet = range('A', 'Z');
foreach($alphabet as $abc) {
echo <<<END
<button name="$abc" type="submit" value="$abc">$abc</button>