Salut à tous ,
Voila , je fais un test pour recup des variables passées dns un formulaire et je veux les afficher dans une page en php , pour poursuivre ( lect de BDD avec ces variables etc ... ) mais j'ai une erreur "Undefined variable etc.... " voici le form
<form method="GET" action="verifMaj.php">
<table width="80%" border="0" height="59" align="center" cellpadding="20">
<tr>
<td width="295" height="25">
<div align="left"><font face="Comic Sans MS, Arial, Verdana" size="2" color="#FFFF00">Votre
Mot de Passe:</font></div>
</td>
<td width="307" height="25">
<p>
<input type="text" name="mopass">
</p>
</td>
</tr>
<tr>
<td width="295">
<div align="left"><font face="Comic Sans MS, Arial, Verdana" size="2" color="#FFFF00">Choix
de la TABLE à modifier :</font></div>
</td>
<td width="307">
<select name="seltable" size="1">
<option>Select 1;</option>
<option>select 2;</option>
</select>
</td>
</tr>
<tr>
<td width="295">
<div align="center">
<input type="submit" name="Submit" value="Envoyer">
</div>
</td>
Et voici le code php(VerifMaj.php)
<?php
print (".$mopass");
print (".$seltable");
?>
Vous voyez ????
Merci