A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/en-US/docs/Glossary/PHP below:

PHP - Glossary | MDN

PHP

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.

Examples Basic syntax
// start of PHP code
<?php
  // PHP code goes here
?>
// end of PHP code
Printing data on screen
<?php
  echo "Hello World!";
?>
PHP variables
<?php
  // variables
  $name='Danilo';
  $surname='Santos';
  $country='Brasil';
  $email='danilocarsan@gmail.com';

  // printing the variables
  echo $name;
  echo $surname;
  echo $country;
  echo $email;
?>
See also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4