Mr yvele yvele n'est plus. | ben voila, en php les variables des formulaires html sont envoyés directement au fichier php pointé.. zetes d'accord..
   mé la, ça marche pas.. je sais pas pkoi, ça fé 1 heure que je suis dessus..        ça c inscription.htm :
  
  Code :
 - <html>
 - <head>
 - <title>Document sans titre</title>
 - <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 - </head>
 - <body>
 - <form action="nscrpt.php" method="post">
 -   nom : <input type="text" name="nomaa"><br>
 -   <input type="text" name="emailaa"><br>
 -   <input type="submit">
 - </form>
 - </body>
 - </html>
 
  |  
 
   et c nscrpt.php :
  
  Code :
 - <html>
 - <body>
 - <?php
 -   if( $nomaa && $emailaa)
 -   {
 -   	$host	= "localhost";
 -   	$user	= "root";
 -   	$pass	= "";
 -   	$bdd	= "base";
 -   	$table	= "test";
 -   	mysql_connect($host,$user,$pass) or die("marche pas" );
 -   	mysql_select_db("$bdd" ) or die("marche pas" );
 -   	//$nomaa = "jean culelasociété";
 -   	//$emailaa = "jean@rebel.com";
 -   	echo("voila: $nomaa $emailaa" );
 -   	$query = "INSERT INTO $table(nom,email,dateheure) VALUES('$nomaa','$emailaa', NOW())";
 -   	$result = mysql_query($query);
 -   	mysql_close();
 -   }
 -   else
 -   	echo("fuck! ça a pas marché!!! grrrrrrrr!!!!!!!" );
 - ?>
 - </body>
 - </html>
 
  |  
 
   donc voila.. g tout essayé, je vois plus..
        ---------------
			 yvele n'est plus.
    |