Example:
Code: Select all
Support Group <select name="Group">
<?php
while (!$rs->EOF) {
echo '<option value="' . trim($rs->Fields['supportGroup']->Value) . '">' . trim($rs->Fields['supportGroup']->Value) . '</option>';
$rs->MoveNext();
}
?>
</select>
I think that onChange event of the first select list I need to call a Function that can manipulate the 'Items' list.
It is just like how it happens on web pages when you select a "State" and corresponding "City" is displayed in another Drop-Down List.
Any help?