fork(1) download
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Display Name</title>
  5. </head>
  6. <body>
  7. <h1>My Name is: <?php echo "John Doe"; ?></h1>
  8. </body>
  9. </html>
Success #stdin #stdout 0.04s 25572KB
stdin
Standard input is empty
stdout
<!DOCTYPE html>
<html>
<head>
    <title>Display Name</title>
</head>
<body>
    <h1>My Name is: John Doe</h1>
</body>
</html>