Friday, March 13, 2009

What is PHP?

PHP stands for PHP Hypertext Preprocessor. PHP is a scripting language embedded in HTML. for example:
<?php $name = "ashwani kumar"; ?>
<table>
<tr>
<td><?php echo $name; ?></td>
</tr>
</table>
PHP start with <?php tag and end with ?> tag.

No comments:

Post a Comment