fork download
  1. <?php
  2. /*
  3. Author: Marko Gargenta
  4. Date: 12/11/2006
  5. Description:
  6. This Is a simple PHP script that outputs Hello World text
  7. */
  8. ?>
  9. <html><head><title>Hello World</title></head>
  10. <body>
  11. <h1>Hello World Exammple</h1>
  12. <?php
  13. // This is a Comment line (C++ style)
  14. print "It's such a perfect day!"; # Another comment here
  15. ?>
  16. <!--this is an HTML comment -->
  17. </body></html>
Success #stdin #stdout 0.04s 25280KB
stdin
Standard input is empty
stdout
<html><head><title>Hello World</title></head>
<body>                                                                        
<h1>Hello World Exammple</h1>
It's such a perfect day!<!--this is an HTML comment -->
</body></html>