Entry
How do I forward a GET/POST request to another file without notifying the users browser to redirect?
Feb 24th, 2008 00:14
dman, sh, Scott Kingdon, http://www.ttnr.org
hi !
theres many ways, some just had popped out off my head:
1. using method POST and action=yourparser.php
then yourparser.php using a foreach will
dump out * from HTTP_POST_VARS and fopening or doing whatever you
want with it
2. you can use include() storing all parameters in session vars and the
other page can get the values from there
-sh