Re: [PHP] How do I POST data with headers & make the browser follow?

2005-10-10 Thread Richard Lynch
On Sat, October 8, 2005 1:58 am, Ragnar wrote: > What I gather from Richards answer earlier that the difference between > $_POST, $_GET or $_COOKIE, $_SESSION is almost irrelevant, I might > as well store the detail in a session to be able to use them on page > 3 it seems. On a DEDICATED server, $

Re: [PHP] How do I POST data with headers & make the browser follow?

2005-10-10 Thread Mark Rees
> basically what I am working on is integrating a step inbetween the checkout > and the payment gateway processing. > > The cardholder information is checked for enrolment in the first step, if > the cardholder is enrolled he will need to authenticate himself by password > (this is where the 2nd pa

Re: [PHP] How do I POST data with headers & make the browser follow?

2005-10-08 Thread Ragnar
Hi Mark, basically what I am working on is integrating a step inbetween the checkout and the payment gateway processing. The cardholder information is checked for enrolment in the first step, if the cardholder is enrolled he will need to authenticate himself by password (this is where the 2nd pa

Re: [PHP] How do I POST data with headers & make the browser follow?

2005-10-07 Thread Ragnar
: "Richard Lynch" <[EMAIL PROTECTED]> > An: "Ragnar" <[EMAIL PROTECTED]> > Kopie: php-general@lists.php.net > Betreff: Re: [PHP] How do I POST data with headers & make the browser > follow? > Datum: Fri, 7 Oct 2005 15:56:09 -0500 (CDT) > &

Re: [PHP] How do I POST data with headers & make the browser follow?

2005-10-07 Thread Richard Lynch
On Thu, October 6, 2005 4:52 am, Ragnar wrote: Everything you are trying to do with the cURL, multiple pages, and whatnot scares the bejesus out of me... Especially that you seem to be passing people's credit card numbers around in this manner. [shudder] > I did see that there is a FOLLOWLOCATION

Re: [PHP] How do I POST data with headers & make the browser follow?

2005-10-07 Thread Mark Rees
> The information that comes in from the first page is a creditcard form > with the standard values (CCnumber, Expiry Date, Cardholder name etc). > > On page 2 an XMLrequest is done with a verification gateway (in this case to > check for enrolment in 3D-Secure), the result for that I get back on t

Re: [PHP] How do I POST data with headers & make the browser follow?

2005-10-06 Thread Ragnar
che Nachricht --- > Von: Brent Baisley <[EMAIL PROTECTED]> > An: Ragnar <[EMAIL PROTECTED]> > Kopie: php-general@lists.php.net > Betreff: Re: [PHP] How do I POST data with headers & make the browser > follow? > Datum: Thu, 6 Oct 2005 08:57:02 -0400 > > If the

Re: [PHP] How do I POST data with headers & make the browser follow?

2005-10-06 Thread Mark Rees
> > 1. Take POST data from a form (no problem) > 2. Do whatever i need to on the target page (no problem) > 3. Pass some other data on to a 3rd page as a POST >request. > 4. Get the browser to follow to said 3rd page. > > > All this is happening via SSL. What the other people said about HTTP.

Re: [PHP] How do I POST data with headers & make the browser follow?

2005-10-06 Thread Brent Baisley
If the information is sensitive, why are you trying to fake a POST submission? A POST can be received from anywhere. SSL is just encrypting it, not verifying the client is the same. I would use session variables to store information you need to access from page to page. That way you can ver

[PHP] How do I POST data with headers & make the browser follow?

2005-10-06 Thread Ragnar
Hi guys/girls, I have to apologize if this issue has been discussed in detail before but I couldn't find anything obvious so far. What I need/want to do is to : 1. Take POST data from a form (no problem) 2. Do whatever i need to on the target page (no problem) 3. Pass some other data on to a 3r