HTML beginner |
|
Ik heb nu zo:
<form method="post" action="" name="nieuwbericht">
<table>
<tr>
<td style="width: 15%;" >
Ontvanger
</td>
<td style="width: 75%;" colspan="2">
<input type="text" name="sOntvanger" id="sOntvanger" size="40" />
<select name="selectgebruiker" >
<?php
$rQueryGebruikers = mysql_query ( "SELECT id, username FROM users" ) or die ( "Fout met database <br /> ".mysql_error());
while ( $aQueryGebruikers = mysql_fetch_assoc ( $rQueryGebruikers ) )
{
echo '<option value="'.$aQueryGebruikers['username'].'" onclick="document.nieuwbericht.sOntvanger.value= document.nieuwbericht.selectgebruiker.options[document.nieuwbericht.selectgebruiker.selectedIndex].value">'. $aQueryGebruikers['username'].'</option>';
}
?>
</select>
</td>
</tr>
<form method="post" action="" name="nieuwbericht"> <table> <tr> <td style="width: 15%;" > Ontvanger </td> <td style="width: 75%;" colspan="2"> <input type="text" name="sOntvanger" id="sOntvanger" size="40" /> <select name="selectgebruiker" > <?php { echo '<option value="'.$aQueryGebruikers['username'].'" onclick="document.nieuwbericht.sOntvanger.value= document.nieuwbericht.selectgebruiker.options[document.nieuwbericht.selectgebruiker.selectedIndex].value">'. $aQueryGebruikers['username'].'</option>'; } ?> </select> </td> </tr>
maar hij doet niks. |