[PHP-DOC] cvs: phpdoc /it/functions ifx.xml From: Luca Perugini (l.perugini <email protected>)
Date: 08/31/00

perugini Thu Aug 31 09:40:59 2000 EDT

  Modified files:
    /phpdoc/it/functions ifx.xml
  Log:
  Sync with en tree.
  
  
Index: phpdoc/it/functions/ifx.xml
diff -u phpdoc/it/functions/ifx.xml:1.3 phpdoc/it/functions/ifx.xml:1.4
--- phpdoc/it/functions/ifx.xml:1.3 Sat Jun 24 00:38:44 2000
+++ phpdoc/it/functions/ifx.xml Thu Aug 31 09:40:59 2000
@@ -211,7 +211,7 @@
      <example>
       <title>Connect to a Informix database</title>
       <programlisting role="php3">
-$conn_id = ifx_pconnect ("mydb <email protected>", "imyself", "mypassword");
+$conn_id = ifx_connect ("mydb <email protected>", "imyself", "mypassword");
       </programlisting>
      </example>
     </para>
@@ -545,7 +545,7 @@
      </funcprototype>
     </funcsynopsis>
     <para>
- The Informix error codes (SQLSTATE & SQLCODE) formatted as
+ The Informix error codes (SQLSTATE &amp; SQLCODE) formatted as
      follows :
     </para>
     <para>
@@ -720,7 +720,7 @@
      <programlisting role="php3">
 /* assume the first column of 'sometable' is a serial */
 $qid = ifx_query("insert into sometable
- values (0, '2nd column', 'another column' ", $connid);
+ values (0, '2nd column', 'another column' ", $connid));
 if (! $qid) {
     ... error ...
 }
@@ -888,7 +888,7 @@
 if (! isset ($types)) {
   ... error ...
 }
-for ($i = 0; $i < count($types); $i++) {
+for ($i = 0; $i &lt; count($types); $i++) {
     $fname = key($types);
     printf("%s :\t type = %s\n", $fname, $types[$fname]);
     next($types);
@@ -929,7 +929,7 @@
 if (! isset($properties)) {
   ... error ...
 }
-for ($i = 0; $i < count($properties); $i++) {
+for ($i = 0; $i &lt; count($properties); $i++) {
     $fname = key ($properties);
     printf ("%s:\t type = %s\n", $fname, $properties[$fname]);
     next ($properties);