fork download
  1. <html>
  2. <head>
  3. <title>Hello World</title>
  4. </head>
  5. <body>
  6. <h1>Hello World Example</h1>
  7. <?php
  8. print "It's such a perfect day!";
  9. ?>
  10.  
  11. </body></html>
Success #stdin #stdout 0.04s 25728KB
stdin
Standard input is empty
stdout
<html>                                                                         
<head>                                                                                   
<title>Hello World</title>
</head>
<body>
<h1>Hello World Example</h1>
It's such a perfect day!
</body></html>