Typos in examples

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@33205 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Ron Chmara 2000-09-30 20:33:57 +00:00
parent e19e0a6591
commit 736bb20ca5

View file

@ -720,7 +720,7 @@ if ($rowcount > 1000) {
<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 ...
}
@ -925,7 +925,7 @@ for ($i = 0; $i &lt; count($types); $i++) {
<example>
<title>Informix SQL fieldproperties</title>
<programlisting role="php3">
$properties = ifx_fieldtypes ($resultid);
$properties = ifx_fieldproperties ($resultid);
if (! isset($properties)) {
... error ...
}