An example needs an title and an informalexample not.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@20701 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Egon Schmid 2000-02-28 18:42:14 +00:00
parent 1dd46e58ad
commit cc6b15ec30

View file

@ -140,7 +140,7 @@ ibase_close($dbh);
<para>
Fetches a row as a psuedo-object from a result id obtained either by ibase_query or
ibase_execute.
<example>
<informalexample>
<programlisting role="php">
$dbh = ibase_connect ($host, $username, $password);
$stmt = 'SELECT * FROM tblname';
@ -150,7 +150,7 @@ while ($row = ibase_fetch_object($sth)) {
}
ibase_close($dbh);
</programlisting>
</example>
</informalexample>
</para>
<para>
See also <function>ibase_fetch_row</function>.