Sunday, March 16, 2008

PHP Basic

PHP is a Server Side Scripting. It is embeded into the HTML code.

Basic code:

<html>
<?php echo "Hello World" ?>
</html>

The PHP code begin with the tag. The output of the code is Hellow World.

No comments: