Hello World   PHP


Summary

Print 'Hello World!' text.


Requirements

none.


<!DOCTYPE html>
<html>
  <body>
<?php
echo "Hello World!";
?>
  </body>
</html>

PHP code is placed between the '<?php' and '?>' codes.


Result

Hello World!

Tags

#cout  #echo  #helloworld  #printf 


[ Edit (Author only) ]