Voici le Code :
<form name="r" action="reg_dep.php" method="get"><h2>
<input type="radio" name="region" value="2"> choisir la région
<input type="radio" name="region" value="3" checked> choisir un département de la région <br>
</h2>
</p></td>
</tr>
<tr>
<td width="28%" height="49" bgcolor="#E4F3FF"> </td>
<td width="72%" bgcolor="#E4F3FF">
<?
$requete = "select * from REGION;";
$resultat = mysql_query($requete, $connexion);
$ligne = mysql_fetch_assoc($resultat);
if($ligne)
{
while($ligne)
{
?>
<h2><a href="reg_dep.php?red=<?=$ligne['libregion']?>&javascript:document.r.submit()"><? echo $ligne['libregion']; ?></a><br></h2>
<?
$ligne = mysql_fetch_assoc($resultat);
}
}
?>
</form>
