---
title: "What is PHP?"  
description: "What is PHP?"  
author: "Anonymous User"  
published: 2011-03-18  
updated: 2020-09-21  
canonical: https://www.mindstick.com/interview/473/what-is-php  
category: "php"  
tags: ["php"]  
reading_time: 2 minutes  

---

# What is PHP?

**The PHP Hypertext Preprocessor is a programming language** that allows web developers to create dynamic content that interacts with databases. PHP is basically used for developing web based software applications.PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML.\
Nice, but what does that mean? An example:\
**Example**\

```
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"    "http://www.w3.org/TR/html4/loose.dtd"><html>    <head>        <title>Example</title>    </head>    <body>        <?php            echo "Hi, I'm a PHP script!";        ?>    </body></html>
```

## Answers

### Answer by Amrita Bhattacharjee

PHP is a type of programming language. It is specifically categories as scripting language for broader uses.It is used for web applications.It is a hypertext processor.It is used for implementation of various websites.

### Answer by Anonymous User

**The PHP Hypertext Preprocessor is a programming language** that allows web developers to create dynamic content that interacts with databases. PHP is basically used for developing web based software applications.PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML.\
Nice, but what does that mean? An example:\
**Example**\

```
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"    "http://www.w3.org/TR/html4/loose.dtd"><html>    <head>        <title>Example</title>    </head>    <body>        <?php            echo "Hi, I'm a PHP script!";        ?>    </body></html>
```


---

Original Source: https://www.mindstick.com/interview/473/what-is-php

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
