Some advice needed for beginner.
In HTML I can set the SELECTED value of a drop down menu to determine which one shows first:
<select SIZE="1"
NAME="location">
<option> Town A </option>
<option selected> Town B</option>
<option> Town C </option>
</select>
In PHP I have
$sql = "SELECT location FROM LocalLocations ORDER BY location";
On my page I have
<select name="location">
<option selected>Select Location</option>
<!-- BEGIN DYNAMIC BLOCK: pickup -->
<option>{LOCATION}</option>
<!-- END DYNAMIC BLOCK: pickup -->
</select>
Is it possible to set which option is shown.
Hope this make sense.
Kevin