Bonjour, en fait j’ai un petit probléme de menu déroulant dont voici le code:
<form name="formulaire_choix" method="POST" action="">
<center>Site <select name=“site” OnChange=“formulaire_choix.submit();”>
<?php
echo “<option selected></option>”;
$site=$_POST[“site”];
$sql=“select * from lieu ORDER BY nom;”;
$resultat=mysql_query($sql);
while($data=mysql_fetch_object($resultat))
{
echo “<option value=”.$data->nom.">".$data->nom;
}
$site=mysql_fetch_object(mysql_query(“select * from lieu where nom = ‘$site’;”));
echo "<option selected>".$site->nom;
?>
</select></center></form>
<?
//-----------------------------Menu déroulant bureau -------------------------------------------//
?>
<form name="form1" method="POST" action="">
<center>Bureau&nbsp;<select name="bureau">
<?php
$sql=“select * from bureau where idx_lieu = ‘$site->nom’ ORDER BY bureau;”;
$resultat=mysql_query($sql);
while($data=mysql_fetch_object($resultat))
{
echo “<option value=”.$data->id_bureau.">".$data->bureau;
}
?>
</select>
En fait le probléme vient du fait que si il y a un espace ds le menu déroulant du haut et bien ya tout qui plante !!
Donc voila si qq a une idée sur cela merci.