Skip to main content

PHP

PHP is an open-source, interpreted, and object-oriented scripting language that can be executed at the server-side. PHP is well suited for web development.More..

History:
PHP was created by Rasmus Lerdorf in 1994 but appeared in the market in 1995.

Rasmus Lerdorf

Example:

<!DOCTYPE html>
<html>
<body>

<h1>My first PHP page</h1>

<?php
echo "Hello World!";
?>

</body>
</html>