fork download
  1. <html>
  2. <head>
  3. <title>PHP Test</title>
  4. </head>
  5. <body>
  6. <p><?php echo "1 + 1 é " . (1 + 1); ?></p>
  7. </body>
  8. </html>
  9.  
  10. //https://pt.stackoverflow.com/q/345436/101
Success #stdin #stdout 0.01s 82560KB
stdin
Standard input is empty
stdout
<html>
    <head>
        <title>PHP Test</title>
    </head>
    <body>
        <p>1 + 1 é 2</p>
    </body>
</html>

//https://pt.stackoverflow.com/q/345436/101