Here is the program
you can browse the tutorials in w3schools.com
<?php
echo "hello world";
?>
echo and print statements are used to print the output on the browser, and each line in php should be terminated with semi colon (;)
<?php ?> , <? ?>, <?= ?> these are the php tags to write the php code, any php code should be between any one of above tags, by default <?php ?> is enabled, if you want to enable other tags also, change php.ini settings
Here is the program you can
Fri, 08/08/2008 - 22:08 — adminHere is the program
you can browse the tutorials in w3schools.com
<?php
echo "hello world";
?>
echo and print statements are used to print the output on the browser, and each line in php should be terminated with semi colon (;)
<?php ?> , <? ?>, <?= ?> these are the php tags to write the php code, any php code should be between any one of above tags, by default <?php ?> is enabled, if you want to enable other tags also, change php.ini settings