PHP HELLO WORLD
PHP HELLO WORLD
In PHP hellow world tutorial Create a file named hello.php and put it in your web server's root directory ( DOCUMENT_ROOT ) with the following content: Example #1 Our ... All it does is display: Hello World using the PHP echo statement. Note that the .... A simple tutorial given below
You Can Check Our Video Tutorial:
You Can Check Our Video Tutorial:
CODE:
<HTML>
<HEAD>
<TITLE>Tack2Crack.blogspot.in</TITLE>
<BODY>
<?PHP
echo'<p>HELLO WORLD</p>';
?>
</BODY>
</HTML>
No comments