fork download
  1. <?php $username = "Elzero" ?>
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <title>PHP Page | <?php echo $username ?></title>
  9. </head>
  10. <body>
  11. <div>Welcome <?php echo $username ?></div>
  12. <div><?php echo $username ?> You Scored 1000 Points</div>
  13. <div>
  14.  
  15. </div>
  16. </body>
  17. </html>
Success #stdin #stdout 0.02s 25628KB
stdin
Standard input is empty
stdout
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>PHP Page | Elzero</title>
  </head>
  <body>
    <div>Welcome Elzero</div>
    <div>Elzero You Scored 1000 Points</div>
    <div>
      
    </div>
  </body>
</html>