files/en-us/glossary/php/index.md
PHP (a recursive initialism for PHP: Hypertext Preprocessor) is an open-source server-side scripting language that can be embedded into HTML to build web applications and dynamic websites.
// start of PHP code
<?php
// PHP code goes here
?>
// end of PHP code
<?php
echo "Hello World!";
?>
<?php
// variables
$name='Danilo';
$surname='Santos';
$country='Brasil';
$email='[email protected]';
// printing the variables
echo $name;
echo $surname;
echo $country;
echo $email;
?>