Jack's PHP Editor
Save & Run
my games
all students
game.php
index.php
user.php
+ New file
Games:
frogger
+ New game
<?php // Hi, this is Jack's program! // Edit this file over on the left, then click "Save & Run" above. $name = $_POST['name'] ?? null; require_once __DIR__."/User.php"; $jack = new User("Jack","123"); $john = new User("John","321"); $users = [ $jack, $john ]; $loggedIn = $jack->checkPassword($name); ?> <!doctype html> <html> <head><meta charset="utf-8"><title>Jack's program</title></head> <body style="font-family: sans-serif; max-width: 500px; margin: 40px auto;"> <h1>Hi, I'm Jack's program!</h1> <form method="post"> <input type="text" name="name" placeholder="Type something"> <button type="submit">Send it (POST)</button> </form> <?php if($loggedIn){ echo "logged in"; } ?> <?php if ($name): ?> <p>You said: <b><?= htmlspecialchars($name) ?></b></p> <?php endif; ?> </body> </html>
students/jack/index.php
open in new tab