Update comments and wrap in <?php and ?>

This commit is contained in:
Sterling Hughes
2001-05-31 12:25:49 +00:00
parent 13a5e16f35
commit 2d0dbd87c3

View File

@@ -1,6 +1,7 @@
# <?php
# A very simple example that gets a HTTP page. //
# // A very simple example that gets a HTTP page.
//
$ch = curl_init(); $ch = curl_init();
@@ -10,4 +11,4 @@ curl_setopt ($ch, CURLOPT_HEADER, 0);
curl_exec ($ch); curl_exec ($ch);
curl_close ($ch); curl_close ($ch);
?>