How to print “Hello World” in PHP?

By | January 24, 2024

To print Hello world in php you must have PHP installed on your system and follow the following syntax. Goal of this script to teach How to print “Hello World” in browser using PHP.

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