On Wed, Dec 1, 2010 at 11:56, Nadim Attari <[email protected]> wrote:
>>
>> My problem is not the redirection; but all I want is to get the data in
>> $_POST
Again: there is no $_POST data.
Why does receipt.php work while response.php doesn't? THERE IS NO
$_POST DATA.
Your code in receipt.php even uses $_GET. You can see it in the
browser's address bar on the response. It is $_GET. THERE IS NO
$_POST DATA.
Change:
$param = http_build_query($_POST);
To:
$param = http_build_query($_GET);
Or:
$param = http_build_query($_REQUEST);
P.S. - THERE IS NO $_POST DATA.
--
</Daniel P. Brown>
Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting
(866-) 725-4321
http://www.parasane.net/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php