I'm not sure what the issue is. Any ideas?
CODE:
Build Second menu.
if (array_key_exists("SELECT_RSB", $GET)) {
$rsb = $GET["SELECT_RSB"];
$result = mssql_query("SELECT DISTINCT District FROM tblSections WHERE rsb = '$rsb'");
?>
<tr>
<td>
<select name='SELECT_DISTRICT'>
<?
while ($district = mssql_fetch_array($result)) {
?>
<option value='<?$district["DISTRICT"]?>'>
<?$district["DISTRICT"]?>
</option>
<?
}
?>
?>
</select>