PHP
- Details
- Category: Sample Data-Articles
- Published on Saturday, 13 April 2013 16:35
- Written by Administrator
- Hits: 4069
PHP
PHP allows a static webpage to become dynamic. "PHP" is an acronym that stands for "PHP: Hypertext Preprocessor". The word "Preprocessor" means that PHP makes changes before the HTML page is created. This enables developers to create powerful applications that can publish a blog, remotely control hardware, or run a powerful website
PHP code
"PHP: Hypertext Preprocessor"
<!DOCTYPE html>
<html>
<body>
<?php
echo "My first PHP script!";
?>
</body>
</html>
<html>
<body>
<?php
echo "My first PHP script!";
?>
</body>
</html>