What is PHP?
PHP is a programming language.
Originally used only for the development of applications present and active on the server side, capable of generating dynamic content on the Internet.
PHP code example
x
<html>
<head>
<title>Teste PHP</title>
</head>
<body>
<?php echo "<p>Hello World</p>"; ?>
</body>
</html>
<head>
<title>Teste PHP</title>
</head>
<body>
<?php echo "<p>Hello World</p>"; ?>
</body>
</html>
Comment in PHP
x
/* Comment 1 */