Exercice2

Concaténation

Exemple

Dans le dossier variables, ajoutez le fichier exercice2.php

Exercice :

  • Ajoutez dans le haut de votre fichier les variables $nom, $prenom et $age avec leur valeur.

  • Affichez la phrase : je m'appelle nom prenom, j'ai age ans.

    pour cela utilisez la concaténation

1
<!DOCTYPE html>
2
<html lang="fr">
3
4
<head>
5
    <title>PHP Variables</title>
6
    <meta charset="UTF-8" />
7
</head>
8
9
<body>
10
  <h1>je m'appelle nom prenom, j'ai age ans.</h1>
11
</body>

Tapez dans votre navigateur : localhost/langage/variables/exercice2.php