• My PHP Pages

    This is a complete and free PHP programming course for beginners. Everything you need to get started is set out in section one below.

Jun 11, 2013

Posted by Unknown
17 comments | 12:08 PM

                                                   Video Tutorial in sinhala
                             For more sinhala video tutorials visit http://myphpvideo.blogspot.com



How to start coding with PHP

Normally we are writing PHP codes inside HTML so there should be a way to identify HTML and PHP code separately so when we start writing PHP codes always we need to use " <?PHP " at the start and " ?>" mark at the end.

Our first PHP program


<head>
<title>My first php program</title>

<body>

<?php

echo "This is my first PHP program !";

?>

</body>

</head>


Note : echo keyword is using for print..




17 comments :