i have a php page. it must redirected to error page and sending data to it via post method.
I use the following code to redirect the browser on an error,
header("location:error.php");
exit;
Is it possible to pass POST variables on as if a form was submitted, using
header()? (becuase i dont want users can see my post data variables)
variables:
i=1
b=2
thanks