Bonjour tlm alors voici mon probléme j'ai une page formulairehtml.php que voici
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Document sans titre</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form action="Formulaire.php" method="post">
<table width="74%" border="0">
<tr>
<td width="17%">Nom</td>
<td width="83%"><input type="text" name="TxtNom"></td>
</tr>
<tr>
<td>Prenom</td>
<td><input type="text" name="TxtPrenom"></td>
</tr>
<tr>
<td>Age</td>
<td><input type="text" name="TxtAge"></td>
</tr>
</table>
</form>
<br>
<form action="Formulaire.php">
<input type="submit" value="Envoyer">
</form>
</body>
</html>
Et une autre formulaire.php que voici
<html>
<head>
<title>Document sans titre</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<?php
$Nom = $_POST['TxtNom'];
print ("$Nom");
?>
</body>
</html>
Donc quand je clique sur mon bouton envoyer il va bien sur ma page formulaire.php mais quand j'essaie d'afficher le contenu de mon edit TxtNom il me dit
Notice: Undefined index: TxtNom in c:\program files\easyphp1-7\www\formulaire.php on line 9
Notice: Undefined variable: TxtNom in c:\program files\easyphp1-7\www\formulaire.php on line 10
Est ce que vous sauriez comment faire poru afficher le contenu mon edit ??