RE: [PHP] HTTPS POST without user/client intervention

2003-07-16 Thread Ralph Guzman
I think what you are looking for is socket connections: http://www.php.net/manual/en/function.fsockopen.php Or CURL http://www.php.net/manual/en/ref.curl.php -Original Message- From: PHP List [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 1:02 PM To: [EMAIL PROTECTED] Subject:

RE: [PHP] HTTPS POST without user/client intervention

2003-07-16 Thread Jeff Harris
|-Original Message- |From: PHP List [mailto:[EMAIL PROTECTED] |Sent: Tuesday, July 15, 2003 1:02 PM |To: [EMAIL PROTECTED] |Subject: [PHP] HTTPS POST without user/client intervention | |I am writing a php script to accept an HTTPS POST of data from a remote |site, process the data, and

Re: [PHP] HTTPS POST without user/client intervention

2003-07-15 Thread Chris Shiflett
--- PHP List [EMAIL PROTECTED] wrote: I am writing a php script to accept an HTTPS POST of data from a remote site, process the data, and send an HTTPS POST response back (not necessarily to the same remote site). Can you perhaps rephrase what you are trying to do? The way I interpret what you

Re: [PHP] HTTPS POST without user/client intervention

2003-07-15 Thread PHP List
On Tue, 2003-07-15 at 15:12, Chris Shiflett wrote: --- PHP List [EMAIL PROTECTED] wrote: I am writing a php script to accept an HTTPS POST of data from a remote site, process the data, and send an HTTPS POST response back (not necessarily to the same remote site). Can you perhaps

Re: [PHP] HTTPS POST without user/client intervention

2003-07-15 Thread Chris Shiflett
--- PHP List [EMAIL PROTECTED] wrote: As for sending a POST request to a remote site via SSL, just check out cURL, which also has a convenient PEAR package. This is what I am trying to do...and thanks for point out cURL...I will check it out. In that case, you should find this helpful: