01.1: Introduction to PHP - Hello World

Our first program is Hello World. The simplest program any software program can be. We output "Hello World" to the screen for the user to read. And take look at the basic fundamentals of any PHP script.


https://www.youtube.com/watch?v=ieTwPO_jFxA





<?php

print "Hello World\n";

?>





<html>
  <head>
    <title>This is a webpage</title>
  </head>
<body>

<?php

print "Hello World\n";

?>

</body>
</html>