1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| <table width="700"; height="250"; border="2" align="center">
<tr>
<td rowspan="3"><img src="images/equaliser.gif" height="250" width=="100%" align="center"></td>
<td width="300"><div> ici je veux afficher la selection</td>
<td rowspan="3"><img src="images/baffle.png" height="250" width="100"></td>
</tr>
<tr><td width="300">
<select name="chaine" multiple="multiple" size="7" style="width:100%" >
<?php
$query=mysql_query("select chaine From chaine");
while($data=mysql_fetch_array($query)){?>
<option value="<?php echo $data['chaine'];?>"> <?php echo $data['chaine'].'</br>'; }?> </option>
</select>
</td></tr> |