phpicoder Oct 22, 2021 php

PHP (Hypertext Preprocessor) is a server site scripting language, and a powerful tool for making dynamic and interactive Web pages. PHP is a open source and free Download. PHP is a easy to use and most popular scripting language. PHP is basically used for developing web-based software applications. PHP files are saved with the ".php" file extension, and the PHP development code is enclosed in tags. Example

<!DOCTYPE html>
<html>
<body>

<?php
echo "This is a my first example";
?>

</body>
</html>

php