Is there any possibility to have a drop-down-menu where you can add an own value by typing it directly into the drop-down-field? The Idea is to have all rows in a database to be listet in this drop-down-menu and to have the posibility to add a new row. The php-File for saving all the Data is allready working. Rightnow my code for the drop-down-menu looks like this:
<select id="name" name="name" onChange="enableOther();" onFocus="enableOther()">
<option> </option>
<option>Neu</option>
<?php
while($row = mysql_fetch_object($ergebnis))
{
echo('<option>'.$row->Material.'</option>');
}
?>
</select>
i hope there is any solution for my problem...