PHP
PHP (再帰的な頭文字語で PHP: Hypertext Preprocessor) はオープンソースのサーバー側スクリプト言語で、 HTML に組み込んで、ウェブアプリや動的なウェブサイトを構築することができます。
例
>基本的な文法
php
  // start of PHP code
<?php
     // PHP code goes here
 ?>
// end of PHP code
画面にデータを出力する
php
<?php
   echo "Hello World!";
?>
PHP の変数
php
<?php
 // variables
 $nome='Danilo';
 $sobrenome='Santos';
 $pais='Brasil';
 $email='danilocarsan@gmailcom';
 // printing the variables
 echo $nome;
 echo $sobrenome;
 echo $pais;
 echo $email;
?>