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:
Mehdi Achour 2004-03-21 16:59:26 +00:00
parent 6d66f864a3
commit c37e88de08

View file

@ -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>