Monday, 22 December 2014

PHP Basics Concepts



PHP Tags:

PHP lets you embed PHP code in regular HTML pages, and execute the embedded PHP 
code when the page is requested. 
These embedded PHP commands are enclosed within special start and end tags, like this:
 

<?php ... Your PHP code ... ?>

Lets Start Coding

Lets Start From Hello World :) :

Simple example of php to print name on webpage with combination of html
<html> <head></head> <body> <p>Html work</p> <br/> <?php // print output echo 'echo command print on webpage'; ?> </body> </html>