[PHP] recuperation ratée variables ds formulaires ???

recuperation ratée variables ds formulaires ??? [PHP] - PHP - Programmation

Marsh Posté le 16-12-2002 à 11:25:51    

fichier send.php
<?php
         
    // en variables globales
    $nom     = $_POST["nom"];
    $prenom  = $_POST["prenom"];
    $fonction = $_POST["fonction"];
    $tel = $_POST["tel"];
    $site = $_POST["site"];
    $societe = $_POST["societe"];
    $service = $_POST["service"];
    $mail = $_POST["mail"];
    print "$nom";
    print "$prenom";
?>
 
 
fichier form
<html>
<form action="send.php" method=post name="test">
<input type=text name=nom;">nom<br>
 <input type=text name=prenom;">prenom<br>
<input type=text name=fonction;">fonction<br>
<input type=submit value="Enregistrer">
<input type=reset value="Effacer">
</form>
</html>
 
 
Pourquoi ca renvoie pas les print ? print"$nom" j ai rien merci d avance

Reply

Marsh Posté le 16-12-2002 à 11:25:51   

Reply

Marsh Posté le 16-12-2002 à 11:30:07    

et si tu commençais par avoir un formulaire valide ?
 
 
<input type="text" name="nom">


---------------
La musique c'est comme la bouffe, tu te souviens du restaurant dans lequel t'as bien mangé 20 ans plus tôt, mais pas du sandwich d'il y a 5 minutes :o - Plugin pour winamp ©Harkonnen : http://harko.free.fr/soft
Reply

Marsh Posté le 16-12-2002 à 11:35:18    

sakuraba a écrit :

<html>
<form action="send.php" method=post name="test">
 
<input type="text" name="nom">nom<br>
 <input type="text" name="prenom">prenom<br>
<input type="text" name="fonction">fonction<br>
<input type=submit value="Enregistrer">
<input type=reset value="Effacer">
</form>
</html>


 
marche toujours pas

Reply

Marsh Posté le 16-12-2002 à 11:47:02    

TEST2

Code :
  1. <?php
  2.      
  3.    // en variables globales
  4.    $nom     = $_POST["nom"];
  5.    $prenom  = $_POST["prenom"];
  6.    $fonction = $_POST["fonction"];
  7.    $tel = $_POST["tel"];
  8.    $site = $_POST["site"];
  9.    $societe = $_POST["societe"];
  10.    $service = $_POST["service"];
  11.    $mail = $_POST["mail"];
  12.    print "NOM $nom";
  13.    print "PRENOM $prenom";
  14. ?>


TEST

Code :
  1. <html>
  2. <form action="test2.php" method=post name="test">
  3. <input type="text" name="nom">nom<br>
  4. <input type="text" name="prenom">prenom<br>
  5. <input type="text" name="fonction">fonction<br>
  6. <input type=submit value="Enregistrer">
  7. <input type=reset value="Effacer">
  8. </form>
  9. </html>


 
ca marche parfaitement, tu aurais pas un probleme de config plutot ?

Reply

Marsh Posté le 16-12-2002 à 11:47:04    

fais un print_r($_POST) tu verras vite si tes variables sont bien postées ou pas


---------------
La musique c'est comme la bouffe, tu te souviens du restaurant dans lequel t'as bien mangé 20 ans plus tôt, mais pas du sandwich d'il y a 5 minutes :o - Plugin pour winamp ©Harkonnen : http://harko.free.fr/soft
Reply

Marsh Posté le 16-12-2002 à 12:06:44    

ca marche merci et bon appetit

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed