Heres a toughy~
I have a drop down menu that is populated via a drop down menu. However I used the FetchArray() loop so that the code is similar to
fetch assoc() //loop is here
echo"
<option value=\"".$UCID."\">".$UCID."</option>";
//end loop
Now the drop down menu produces a list of names, but only because the variable is populated via the loop. How can i pass that variable to another variable in order to use it on another page.
How can I do $variable=HTTP_POST_VARS[$ucid]
Any help would be appreciated.
Rick