mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
adding php tags
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@154162 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
6d66f864a3
commit
c37e88de08
1 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.15 $ -->
|
||||
<!-- $Revision: 1.16 $ -->
|
||||
<!-- splitted from ./en/functions/dbx.xml, last change in rev 1.3 -->
|
||||
<refentry id="function.dbx-query">
|
||||
<refnamediv>
|
||||
|
@ -286,6 +286,8 @@ echo "</table>\n";
|
|||
<title>How to handle UNBUFFERED queries</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
|
||||
$result = dbx_query ($link, 'SELECT id, parentid, description FROM table', DBX_RESULT_UNBUFFERED);
|
||||
|
||||
echo "<table>\n";
|
||||
|
@ -297,6 +299,8 @@ while ($row = dbx_fetch_row($result)) {
|
|||
echo "</tr>\n";
|
||||
}
|
||||
echo "</table>\n";
|
||||
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
</example>
|
||||
|
|
Loading…
Reference in a new issue