Re: [PHP] Using post method thru php-script

2001-06-25 Thread Richard Lynch
$fp = fsockopen('secure.aaa.com',443,$err_num,$err_msg); Talking to an SSL server on port 443 is a bit more complicated than chatting up an HTTP server on port 80. You have to pre-negotiate your encryption algorithms and send some public keys back and forth to generate some more public/private

[PHP] Using post method thru php-script

2001-06-23 Thread George Alexander
Hi, I am developing a shopping-cart application and i need to authorize the credit-card no. of the customer. I need to use a post method thru my php-script a replica of which I am giving below: Script Start: // Build the request string $request.='cardnum='.urlencode();