I am reading data from a mysql database and displaying it on a web page for the user to make changes. One of the values that I am getting from the database is to be displayed in a Select tag:
Manufacturer: <select name="Manufacturer" tabindex="1" >
<option></option>
<option>Aprilia</option>
<option>BMW</option>
<option>Moto Guzzi</option>
<option>Piaggio</option>
<option>Vespa</option>
</select>
This value is in the php variable $bikes['Model']
which would have one of the above options.
How would I get my page to make the value of $bikes['Model']
to be selected in the Manufacturer Select option above?
Thank you for any help that I may receive.