FREE E LEARNING PLATFORM
INTRODUCTION WHY PHP FEATURES SESSIONS
 

Hello World Program in PHP




Let me start with the Hello World program in PHP. Following script displays the sentence "Hello, World!" in the browser. It is a simple and straight forward 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 just prints the arguments passed to it and does not return any value. But the 'print' statement prints the argument as well as returns a value of 1. Since it returns a value, 'print' statement can be used in expressions.

the echo statement can take multiple parameters and print statement takes only one parameter.

Example Hello World Code using Echo

<?php  echo "Hello, World!";  ?>

Example Hello World Code using Print

<?php  print "Hello, World!";  ?>
noidatut course




Leave Comment