--- title: PHP slug: Glossary/PHP tags: - Beginner - CodingScripting - Glossary - Infrastructure - Intro - PHP - 初心者 - 用語集 translation_of: Glossary/PHP ---

PHP (再帰的な頭文字語で PHP: Hypertext Preprocessor) はオープンソースのサーバー側スクリプト言語で、 HTML に組み込んで、ウェブアプリや動的なウェブサイトを構築することができます。

基本的な文法

  // start of PHP code
<?php
     // PHP code goes here
 ?>
// end of PHP code

画面にデータを出力する

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

PHP の変数

​​​​​​​​​​​​​​<?php
 // variables
 $nome='Danilo';
 $sobrenome='Santos';
 $pais='Brasil';
 $email='danilocarsan@gmailcom';
​​​​​​​
 // printing the variables
 echo $nome;
 echo $sobrenome;
 echo $pais;
 echo $email;
?>