cURL / Mailing Lists / curl-and-php / Single Mail

curl-and-php

I can't get https pages

From: Кириченко Дмитрий <admin_at_ibp.pp.ru>
Date: Wed, 29 Aug 2001 16:57:03 +0600

Help me please.
I can't get https pages throgth CURL.
http pages gets correctly.

sample code is:

$c__url = "https://www.creditmutuel.fr/test/telepaiement/paiement.cgi";
$ch = curl_init($c__url);
curl_setopt ($ch, CURLOPT_HEADER, 1);
curl_setopt ($ch, CURLOPT_VERBOSE, 1);
curl_setopt ($ch, CURLOPT_NOPROGRESS, 0);
curl_setopt ($ch, CURLOPT_NOBODY, 0);
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);

$curl_ret = curl_exec ($ch);
curl_close ($ch);
Received on 2001-08-29