View Single Post

  #1 (permalink)  
Old 01-18-2006
Peter
 
Posts: n/a
Default POST from inside PHP script

Hi,

I want to launch a page with parameters depending on certain input,
I was thinking of doing this :

header("Location: $newurl");

where $newurl is something like this :
http://www.site.com/?val1=1&val2=2&val3=3

Now, this way one can see easily what the variables are and one can try to
vary on the theme to see what other output can be generated.

So I'm wondering how to send these variables along but not in the URL (via
GET I suppose) but via POST instead ?


Reply With Quote