How To Print Hello World in PHP

Everyone starts at some point to learn something new. However, this concept is valid and invalid for programmers,  learning new languages. As every time learn a new programming language, the ritual of writing the first Hello World program remains the same. So it’s always a great thing to start learning any new programming language with a hello world program. Therefore today we’ll start the journey of PHP programming. By learning how to print Hello World in PHP.

One of the easiest and simple programs, you’ll ever write in PHP. The reason is that whatever program you’ll write next is going to be a level up than this one.

 

What’s The Approach?

 

  • Create HTML boilerplate.

 

  • And inside the body, the tag writes a PHP tag.

 

  • Now, inside the PHP tag, write a print statement by, passing the string Hello World.

 

Also Read: How to run PHP code in Visual Studio Code on Windows 10

 

PHP Program To Print Hello World

 

Output:

Hello World

 

<!DOCTYPE html>
<html>
<body>

<?php
echo "Hello World";
?>

</body>
</html>

 

Ethix

I'm a coding geek interested in cyberspace who loves to write and read

Leave a Reply

Your email address will not be published. Required fields are marked *