tom             Sun Nov  4 04:24:08 2001 EDT

  Modified files:              
    /phpdoc/de/functions        com.xml 
  Log:
  file is actual now
  
Index: phpdoc/de/functions/com.xml
diff -u phpdoc/de/functions/com.xml:1.7 phpdoc/de/functions/com.xml:1.8
--- phpdoc/de/functions/com.xml:1.7     Sat Jul  7 18:16:46 2001
+++ phpdoc/de/functions/com.xml Sun Nov  4 04:24:08 2001
@@ -1,3 +1,5 @@
+<?xml encoding="iso-8859-1"?>
+<!-- EN-Revision: 1.21 Maintainer: tom Status: ready -->
 <reference id="ref.com">
  <title>COM Support Funktionen für Windows</title>
  <titleabbrev>COM</titleabbrev>
@@ -48,8 +50,8 @@
     <listitem>
      <simpara>
       Name des DCOM Servers, von welchem die Komponente geholt werden soll.
-      Ist &null; angegeben, wird <literal>localhost</literal>
-      angenommen. Um DCOM zuzulassen, muss <constant>com.allow_dcom</constant> 
+      Ist &null; angegeben, wird <literal>localhost</literal> angenommen.
+      Um DCOM zuzulassen, muss <constant>com.allow_dcom</constant> 
       in der <filename>php.ini</filename> auf &true; 
       gesetzt sein.
      </simpara>
@@ -109,7 +111,7 @@
 $num_columns = $rs->Fields->Count();
 echo $num_columns . "\n";
 
-for ($i=0; $i < $num_columns; $i++)
+for ($i=0; $i &lt; $num_columns; $i++)
 {
     $fld[$i] = $rs->Fields($i);
 }
@@ -117,7 +119,7 @@
 $rowcount = 0;
 while (!$rs->EOF)
 {
-    for ($i=0; $i < $num_columns; $i++)
+    for ($i=0; $i &lt; $num_columns; $i++)
     {
         echo $fld[$i]->value . "\t";
     }
@@ -450,5 +452,7 @@
 sgml-local-catalogs:nil
 sgml-local-ecat-files:nil
 End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
 -->
-


Reply via email to