Imprimer ce chapitreImprimer ce chapitre

Syntaxe de base PHP

3 Insertion de code PHP

3.1 Premier script PHP

<html>
    <head>

                <title>Hello</title>

         </head>

<body>
<?php

echo "Hello word";

?>

</body>

</html>