Henry Land's PHP Editor
Save & Run
my games
all students
index.php
+ New file
Games:
frogger
+ New game
<?php // Hi, this is Henry Land's program! // Edit this file over on the left, then click "Save & Run" above. error_reporting(E_ALL & ~E_DEPRECATED); // hides "Deprecated" notices $name = $_POST['name'] ?? null; ?> <!doctype html> <html> <head><meta charset="utf-8"><title>Henry Land's program</title></head> <body style="font-family: sans-serif; max-width: 500px; margin: 40px auto;"> <h1>Hi, I'm Henry Land's program!</h1> <form method="post"> <input type="text" name="name" placeholder="Type something"> <button type="submit">Send it (POST)</button> </form> <?php if ($name): ?> <p>You said: <b><?= htmlspecialchars($name) ?></b></p> <?php endif; ?> </body> </html>
students/henry-land/index.php
open in new tab