PHPBeginner

PHP Hello World

PB Pb28 Master Team July 6th, 2023 Beginner

📦 Get the complete source code for this tutorial

This is the first post on my PHP blog, Pb28 Master. I am starting this blog with enthusiasm, love, and confidence. I hope I will add some value to the PHP community.

Following the tradition, let me start with the Hello World program in PHP. The following script displays the sentence “Hello, World!” in the browser. It is a simple code. There are two basic ways of doing this hello world print, and they are using ‘echo’ or ‘print.’

The difference between using ‘echo’ and ‘print’ is,

  • The echo statement prints the arguments passed to it and does not return any value. But the ‘print’ statement prints the argument and returns a value of 1. Since it returns a value, the ‘print’ statement can be used in expressions.
  • The echo statement can take multiple parameters, and the print statement takes only one parameter.

Example Hello World Code using Echo

php
<?php

echo "Hello, World!";

?>

Example Hello World Code using Print

php
<?php

print "Hello, World!";

?>

In this context of printing ‘Hello, World!’, both ‘echo’ and ‘print’ are the same.

PHP Hello World Output

📦 Download the full project files and try it locally