Alert!! PHP
Résolu
johnybath
Messages postés
14
Date d'inscription
Statut
Membre
Dernière intervention
-
974_Vin's_974 Messages postés 547 Date d'inscription Statut Membre Dernière intervention -
974_Vin's_974 Messages postés 547 Date d'inscription Statut Membre Dernière intervention -
Bonjour à tous,
je ne comprend pas quel est l'erreur dans l'expression
echo $prénom;
voici le script:
<HTML>
<HEAD>
<TITLE>Affichage des résultats</TITLE>
<BODY>
<?php
echo $nom;
echo '<br>'
echo $prénom;
echo '<br>';
echo $age;
echo '<br>'
echo $afficher;
?>
</BODY>
</HTML>
je ne comprend pas quel est l'erreur dans l'expression
echo $prénom;
voici le script:
<HTML>
<HEAD>
<TITLE>Affichage des résultats</TITLE>
<BODY>
<?php
echo $nom;
echo '<br>'
echo $prénom;
echo '<br>';
echo $age;
echo '<br>'
echo $afficher;
?>
</BODY>
</HTML>
A voir également:
- Alert!! PHP
- Easy php - Télécharger - Divers Web & Internet
- Expert php pinterest - Télécharger - Langages
- Alert php ✓ - Forum PHP
- Alert hard drive not found ✓ - Forum Windows
- Alert system battery voltage is low ✓ - Forum Matériel & Système
4 réponses
voici tout mon script:
FORM Method="POST" Action="test.php">
Nom : <INPUT type=text size=20 name=nom><BR>
Prénom : <INPUT type=text size=20 name=prenom><BR>
Age : <INPUT type=text size=2 name=age><BR>
<INPUT type=submit value=Envoyer>
<INPUT type=hidden name=afficher value=ok>
</FORM>
$nom = 'le_contenu_du_champ_nom'
$prénom = 'le_contenu_du_champ_prénom'
$age = 'le_contenu_du_champ_age'
$afficher = 'ok'
<HTML>
<HEAD>
<TITLE>Affichage des résultats</TITLE>
<BODY>
<?php
echo $nom;
echo '<br>'
echo $prénom;
echo '<br>';
echo $age;
echo '<br>'
echo $afficher;
?>
</BODY>
</HTML>
FORM Method="POST" Action="test.php">
Nom : <INPUT type=text size=20 name=nom><BR>
Prénom : <INPUT type=text size=20 name=prenom><BR>
Age : <INPUT type=text size=2 name=age><BR>
<INPUT type=submit value=Envoyer>
<INPUT type=hidden name=afficher value=ok>
</FORM>
$nom = 'le_contenu_du_champ_nom'
$prénom = 'le_contenu_du_champ_prénom'
$age = 'le_contenu_du_champ_age'
$afficher = 'ok'
<HTML>
<HEAD>
<TITLE>Affichage des résultats</TITLE>
<BODY>
<?php
echo $nom;
echo '<br>'
echo $prénom;
echo '<br>';
echo $age;
echo '<br>'
echo $afficher;
?>
</BODY>
</HTML>