mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Typo fix and minor update
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@63801 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
d7e6f29a56
commit
fdcdaa98e0
1 changed files with 4 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.33 $ -->
|
||||
<!-- $Revision: 1.34 $ -->
|
||||
<reference id="ref.ibase">
|
||||
<title>InterBase functions</title>
|
||||
<titleabbrev>InterBase</titleabbrev>
|
||||
|
@ -350,11 +350,9 @@ magic_quotes_sybase = On
|
|||
<informalexample>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
// helio@helio.com.br 08-Dec-2000 02:53
|
||||
|
||||
$rs=ibase_query("Select * from something");
|
||||
$coln = ibase_num_fields($rs);
|
||||
for ($i=0 ; $i < $coln ; $i++) {
|
||||
$rs=ibase_query("SELECT * FROM tablename");
|
||||
$coln = ibase_num_fields($rs);
|
||||
for ($i=0; $i < $coln; $i++) {
|
||||
$col_info = ibase_field_info($rs, $i);
|
||||
echo "name: ".$col_info['name']."\n";
|
||||
echo "alias: ".$col_info['alias']."\n";
|
||||
|
|
Loading…
Reference in a new issue