cortesi         Mon Apr  1 12:49:16 2002 EDT

  Modified files:              
    /phpdoc/en/features remote-files.xml 
  Log:
  be compliant a bit more to RFC 2606
  
Index: phpdoc/en/features/remote-files.xml
diff -u phpdoc/en/features/remote-files.xml:1.14 
phpdoc/en/features/remote-files.xml:1.15
--- phpdoc/en/features/remote-files.xml:1.14    Thu Mar 28 12:16:38 2002
+++ phpdoc/en/features/remote-files.xml Mon Apr  1 12:49:16 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.14 $ -->
+<!-- $Revision: 1.15 $ -->
  <chapter id="features.remote-files">
   <title>Using remote files</title>
 
@@ -33,7 +33,7 @@
     <programlisting role="php">
 <![CDATA[
 <?php
-$file = fopen ("http://www.php.net/";, "r");
+$file = fopen ("http://www.example.com/";, "r");
 if (!$file) {
     echo "<p>Unable to open remote file.\n";
     exit;
@@ -67,7 +67,7 @@
     <programlisting role="php">
 <![CDATA[
 <?php
-$file = fopen ("ftp://ftp.php.net/incoming/outputfile";, "w");
+$file = fopen ("ftp://ftp.example.com/incoming/outputfile";, "w");
 if (!$file) {
     echo "<p>Unable to open remote file for writing.\n";
     exit;


Reply via email to