Php codes will starts with <?php and ends with ?>. Here is the first php program. <html> <body> <?php echo “MY First PHP Program”; ?> </body> </html> Write the above codes in notepad and save it as first.php. Now run the this file on localhost, you should be able to see MY First PHP Program. [...]

continue reading.....