[FX.php List] Re: $_GET won't GIT

John Moed john at technames.com
Fri Jan 18 09:04:43 MST 2008


Jonathan,

I believe that it you leave the action="" blank (instead of
action="page.php"), it is the same as page=self. If you leave the action
blank, it's going to go to the page that is open. If you have get parameters
in the URL, it is going to re-use them...

If you have a page that can receive both Get and Post variables, you will
need to tell the page what to do if the Get or Post variables aren't set.

If (!isset($_post['postvalue']) {
Do nothing
}else{
Perform action
}

If (!isset($_get['getvalue']) {
Do nothing
}else{
Perform other action
}

Thanks,
John




More information about the FX.php_List mailing list