I want to have a redirect page which auto POSTs data into the receiving page. Is this possible? It sure is! It can be done by building custom HTTP headers, socket connection etc. Is there a class/code that I can reuse with the same functionality?
Thank u!
Use sessions. Best way to handle redirect post.
e.g. holdingpage.php <? session_start(); foreach ($HTTP_POST_VARS as $key=>$value) { $session_data[$key] = $value; };
header("location:nextpage.php"); exit ; ?>