Files
2002-07-23 12:22:50 +00:00

9 lines
295 B
XML

<slide title="SSL Connection">
<blurb>cURL is very cool, when you compile PHP and cURL withh OpenSSL it
can handle HTTPS urls transparently.</blurb>
<example fontsize="1.2em"><![CDATA[<?php
$ch = curl_init ('https://www.thawte.com/');
curl_exec ($ch);
curl_close ($ch);
?>]]></example>
</slide>