Re: [PHP-DB] https post using php

2002-03-28 Thread Paul Burney

on 3/27/02 11:45 PM, mailing list at [EMAIL PROTECTED] appended the
following bits to my mbox:

> I am attempting to POST to a https://whatever.url.com server and return
> the result from the server into the script without the user knowing using
> a php script.  I can not use CURL becuase the shared server I have hosting
> this site was not compiled -with-curl.  I downloaded HTTP_POST PHP script
> from: http://px.sklar.com/code.html?code_id=313.  Here is my code that I
> am using to call the functions:

> Reason: You're speaking plain HTTP to an SSL-enabled server port.
> Instead use the HTTPS scheme to access this URL, please.

1) Since this post is non-database related, it should be posted to the
PHP-General list.

2) That said, I don't think it's possible to do what you want without curl.
There's much more to an SSL/HTTPS connection that talking on a different
port.

Paul





-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-DB] https post using php

2002-03-27 Thread mailing list

Hello,

I am attempting to POST to a https://whatever.url.com server and return
the result from the server into the script without the user knowing using
a php script.  I can not use CURL becuase the shared server I have hosting
this site was not compiled -with-curl.  I downloaded HTTP_POST PHP script
from: http://px.sklar.com/code.html?code_id=313.  Here is my code that I
am using to call the functions:

set_server("onlinechecks.interceptcorporation.com");
$a->set_port("443");
$a->set_file("/icolc/short.cgi");
$a->set_action("https://onlinechecks.interceptcorporation.com/icolc/short.cgi";);
$a->set_enctype("application/x-www-form-urlencoded");
$a->set_element(array("MEN" => "789","MPA" => "456", "MID" => "7015","CRO"
=> "123456780","CAC" => "123123123",
"CPH" => "17015551212","PAM" => "12.34"));
$a->set_timeout(20);
$a->show_post();
$a->send($display=1);

?>

Here is the result returned from the browser:

Bad Request
Your browser sent a request that this server could not understand.

Reason: You're speaking plain HTTP to an SSL-enabled server port.
Instead use the HTTPS scheme to access this URL, please.

Hint: https://206.11.164.21/


Apache/1.3.20 Server at 206.11.164.21 Port 80

Does anyone have any ideas?


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php