Template:Latest stable software release/PHPEdit

From blackwiki
Jump to navigation Jump to search

<!DOCTYPE html> <html>

 <head>
   <meta charset="utf-8" />
   <title>PHP Test</title>
 </head>
 <body>
 <?php
 echo 'Hello World';
 /* echo("Hello World"); works as well,
 although echo is not a function, but a
 language construct. In some cases, such
 as when multiple parameters are passed
 to echo, parameters cannot be enclosed
 in parentheses. */
 ?>
 </body>

</html>