fork download
  1. <html><head><title>Mixing HTML and PHP</title>
  2. </head>
  3. <body>
  4. <font size="+2">
  5. <?php
  6. print "It's such a perfect day!" . "\n";
  7. ?>
  8.  
  9. </font
  10. </body>
  11. </html>
Success #stdin #stdout 0.03s 25744KB
stdin
Standard input is empty
stdout
<html><head><title>Mixing HTML and PHP</title>
</head>
<body>
<font size="+2">
It's such a perfect day!

</font
</body>
</html>