matroz          Thu Mar 28 10:37:33 2002 EDT

  Modified files:              
    /phpdoc/he/functions        curl.xml 
  Log:
  updated changes done in english version -- bring file up to date
  
Index: phpdoc/he/functions/curl.xml
diff -u phpdoc/he/functions/curl.xml:1.6 phpdoc/he/functions/curl.xml:1.7
--- phpdoc/he/functions/curl.xml:1.6    Thu Mar 28 10:27:05 2002
+++ phpdoc/he/functions/curl.xml        Thu Mar 28 10:37:32 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- EN-Revision: 1.29 Maintainer: matroz Status: ready -->
+<!-- EN-Revision: 1.32 Maintainer: matroz Status: ready -->
  <reference id="ref.curl">
   <title>CURL, Client URL Library Functions</title>
   <titleabbrev>CURL</titleabbrev>
@@ -45,8 +45,8 @@
 <![CDATA[
 <?php
 
-$ch = curl_init ("http://www.php.net/";);
-$fp = fopen ("php_homepage.txt", "w");
+$ch = curl_init ("http://www.example.com/";);
+$fp = fopen ("example_homepage.txt", "w");
 
 curl_setopt ($ch, CURLOPT_FILE, $fp);
 curl_setopt ($ch, CURLOPT_HEADER, 0);
@@ -92,7 +92,7 @@
 <?php
 $ch = curl_init();
 
-curl_setopt ($ch, CURLOPT_URL, "http://www.zend.com/";);
+curl_setopt ($ch, CURLOPT_URL, "http://www.example.com/";);
 curl_setopt ($ch, CURLOPT_HEADER, 0);
 
 curl_exec ($ch);


Reply via email to