Bonjour,
J'ai réalisé la liste de mes membres, mais par la suite je souhaiterai en fonction du membre sélectionné, afficher ds la meme page des informations le concernant.
Voici mon code:
<?php
//REQUETE POUR LA LISTE CLIENT
$query1 = "SELECT id_mem, entreprise_mem FROM membres order by entreprise_mem";
$result1 = mysql_query($query1);
?>
<table cellspacing="0" cellpadding="0">
<tr>
<th colspan="2" class="input" scope="col"><div align="left">
<p><img src="images/titre_ajout_documents.gif" width="405" height="33"></p>
<p> </p>
</div></th>
</tr>
<tr>
<th colspan="2" class="input" scope="col"><div align="left">Choisissez le client ...
<FORM METHOD="POST" NAME="Choix_membres" ACTION="?page=liste_documents">
<select name="choix_client" class="select">
<?php
echo "<option value=default>Liste des clients</option>";
while ($val1 = mysql_fetch_array($result1))
{
echo "<option value=".$val1["id_mem"].">".$val1["entreprise_mem"]."</option>";
}
?>
</select>
<INPUT TYPE="button" CLASS="button" NAME="action" VALUE="Rechercher">
</FORM>
</div>
</th>
</tr>
<tr>
<td height="20" colspan="3" class="separationHorizontale"></td>
</tr>
<tr>
<th width="155" scope="col"> </th>
<th width="314" scope="col"> </th>
</tr>
<tr>
<th colspan="2" scope="col"> </th>
</tr>
<th colspan="2" scope="col"><div align="left" class="input">Les documents de XXX . </div></th>
</tr>
<tr>
<td height="20" colspan="3" class="separationHorizontale"></td>
</tr>
<tr>
<th colspan="2" scope="col"> </th>
</tr>
</table>
Merci de votre aide.
---------------
Stan