What is PHP - a brief info about php
PHP is a server side scripting language. that is used to develop Static websites or Dynamic websites or Web applications. PHP stands for Hypertext Pre-processor, that earlier stood for Personal Home Pages.
PHP is a widely-used open source general-purpose scripting language that is especially suited for web development that can be easily embedded with html.
It is one of the most popular web development language. WordPress, Magento like many blogging & eCommerce platform were built in PHP.
PHP is a server scripting language, and a powerful tool for making dynamic and interactive Web pages.
A simple example on php:
<!DOCTYPE html>
<html>
<body>
<?php
echo "PHP Script is working!";
?>
</body>
</html>
Save the file as "simple.php" and run on your localhost. Path of your project should be:
localhost//project_name/simple.php (if you are using wamp)
PHP is a widely-used open source general-purpose scripting language that is especially suited for web development that can be easily embedded with html.
It is one of the most popular web development language. WordPress, Magento like many blogging & eCommerce platform were built in PHP.
PHP is a server scripting language, and a powerful tool for making dynamic and interactive Web pages.
A simple example on php:
<!DOCTYPE html>
<html>
<body>
<?php
echo "PHP Script is working!";
?>
</body>
</html>
Save the file as "simple.php" and run on your localhost. Path of your project should be:
localhost//project_name/simple.php (if you are using wamp)
Comments
Post a Comment