3 /* Retrieve the last selected choice in a select field. */
4 function get_last_selected($name) {
6 $ret = $_SESSION[$key];
7 error_log("last selected $name is $ret");
8 return $_SESSION[$key];
11 /* Remember the last selected choice in a select field. */
12 function set_last_selected($name, $value) {
13 if (isset($value)) error_log("setting last selected $name to $value");
14 else error_log("not setting last selected $name null");
15 if (! isset($value)) return;
17 $_SESSION[$key] = $value;