Here is my table:
</td>
</tr>
<tr>
<td>Test System: </td>
<td><select name="TestSystem">
<?php
$result = mysql_query("select name from test_system");
while($row = mysql_fetch_array($result))
{
echo '<option value="" selected> </option>';
echo '<option value="' .$row['name'] .'">'.$row['name'].'</option>';
}
?>
</select>
</td>
but I want it to be editable. It means, for example that the user can write first letter(for example "A"), and he can see all the options starting with the letter "A". Is there anyway to do this without any frameworks/JavaScript? Only in PHP or HTML?
If I understood your question right the short answer is: No
Thats how you could do it with Javasript (jQueryUI): http://jqueryui.com/autocomplete/