Answers for "php "<#" tag"

PHP
1

php tags

// The opening tag
<?php
  echo "Here is the PHP code."; // Everything in between the tags is executed as PHP code.
// The closing tag
?>
Posted by: Guest on May-29-2021
0

tag php

<?php
echo "Bonjour le monde !";

// ... encore du code

echo "Dernière instruction";

// le script se termine ici, sans la balise de fermeture PHP
Posted by: Guest on September-13-2021

Browse Popular Code Answers by Language