Open In App

PHP Full Form

The Full form of PHP is Hypertext Preprocessor and earlier it was abbreviated as Personal Home Page. It is a general-purpose programming language used to design a website or web application. It is the server-side scripting language embedded with HTML to develop Static website, Dynamic website, or Web applications. It was created by Rasmus Lerdorf in 1994. The syntax of PHP is similar to C, C++, and Java. It manages the dynamic content, database, session, cookies, etc of a dynamic website.

The websites like www.facebook.com, www.yahoo.com are also built on PHP. It can be easily embedded with HTML files and HTML codes can also be written in a PHP file. The thing that differentiates PHP and HTML is that PHP codes are executed on the server whereas HTML codes are directly rendered on the browser. PHP codes are first executed on the server and then the result is returned to the browser. The only information that the client or browser knows is the result returned after executing the PHP script on the server and not the actual PHP codes present in the PHP file. Also, PHP files can support other client-side scripting languages like CSS and JavaScript.

Basic Syntax of PHP




<?php
    echo "Welcome to GeeksforGeeks!";
?>

Characteristics of PHP 

Advantages of PHP 

Disadvantages of PHP

Article Tags :