mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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:
parent
e19e0a6591
commit
736bb20ca5
1 changed files with 2 additions and 2 deletions
|
@ -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 < count($types); $i++) {
|
|||
<example>
|
||||
<title>Informix SQL fieldproperties</title>
|
||||
<programlisting role="php3">
|
||||
$properties = ifx_fieldtypes ($resultid);
|
||||
$properties = ifx_fieldproperties ($resultid);
|
||||
if (! isset($properties)) {
|
||||
... error ...
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue