Editable combobox only in PHP or HTML -
here table:
</td> </tr> <tr> <td>test system: </td> <td><select name="testsystem"> <?php $result = mysql_query("select name test_system"); while($row = mysql_fetch_array($result)) { echo '<option value="" selected> </option>'; echo '<option value="' .$row['name'] .'">'.$row['name'].'</option>'; } ?> </select> </td> but want editable. means, example user can write first letter(for example "a"), , can see options starting letter "a". there anyway without frameworks/javascript? in php or html?
if understood question right short answer is: no
thats how javasript (jqueryui): http://jqueryui.com/autocomplete/
Comments
Post a Comment