Adresat:
|
1) {
// If we were given a single arg, that'll be the
// selected menu item.
if(count($_GET) == 1)
$selected = strtolower(key($_GET));
print("n");
} else {
// There'll be only one...
foreach($options as $key => $description) {
print("" . trim($description) . "n");
}
}
// Used by the form processor acknowledgment to create a
// "take me back" link.
if(!empty($_SERVER['HTTP_REFERER'])) {
print("n");
}
?>
|