Hello World
PHP Tutorials
<?php echo "Hello World";?> Output: Hello World Explanation: A PHP script starts with <?php and ends with ?> In PHP there are two basic ways to get the output: echo and print. <?php print "Hello World";?> Output: Hello World What is difference between echo and print? The differences are small:[...]