I am trying to create an admin area in php and trying to use the jump menu to alter the admin area. For instance there is a drop down menu and when you select an option it runs that choice, but I have verification area before the whole thing and was wondering how would I put a hidden area of $POST because I have a $POST["user"] and $_POST["pass"] how do I put that in the jump menu so that it doesnt show the password and pass the string on when it reloads?
How about using sessions instead of hidden fields (which can be exploited easier)? Then, you just have to make sure "session_start()" is called at the top of each file, and user and pass are global in the $_SESSION array....
~Brett
What is session_start() and $_SESSION ? how would I use that?
read the manual.