Hello World Program in PHP
In this tutorial, we will learn how to write a Hello World program in PHP language. We will go through each statement of the program.
PHP Program
<?php
echo "Hello, World!";
?>
Output
Hello, World!
Working of the "Hello, World!" Program
<?php
This opening tag indicates the start of PHP code.echo "Hello, World!";
This line prints the string "Hello, World!" to the output. Theecho
statement is used to output text to the web page or console.?>
This optional closing tag indicates the end of PHP code. In most modern PHP applications, the closing tag is omitted to prevent trailing whitespace issues.