mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 08:58:56 +00:00
?> -> ?>
updated some prototypes. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@47052 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
227547e1bf
commit
9818ac7436
1 changed files with 18 additions and 18 deletions
|
@ -121,7 +121,7 @@
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>int <function>fbsql_change_user</function></funcdef>
|
||||
<funcdef>resource <function>fbsql_change_user</function></funcdef>
|
||||
<paramdef>string <parameter>user</parameter></paramdef>
|
||||
<paramdef>string <parameter>password</parameter></paramdef>
|
||||
<paramdef>string
|
||||
|
@ -187,7 +187,7 @@
|
|||
or die ("Could not connect");
|
||||
print ("Connected successfully");
|
||||
fbsql_close ($link);
|
||||
?>
|
||||
?>
|
||||
</programlisting>
|
||||
</example>
|
||||
<para>
|
||||
|
@ -302,7 +302,7 @@
|
|||
} else {
|
||||
printf("Error creating database: %s\n", fbsql_error ());
|
||||
}
|
||||
?>
|
||||
?>
|
||||
</programlisting>
|
||||
</example>
|
||||
<para>
|
||||
|
@ -367,7 +367,7 @@
|
|||
}
|
||||
|
||||
fbsql_free_result ($result);
|
||||
?>
|
||||
?>
|
||||
</programlisting>
|
||||
</example>
|
||||
</refsect1>
|
||||
|
@ -479,7 +479,7 @@ fbsql_select_db("nonexistentdb");
|
|||
echo fbsql_errno().": ".fbsql_error()."<BR>";
|
||||
$conn = fbsql_query("SELECT * FROM nonexistenttable");
|
||||
echo fbsql_errno().": ".fbsql_error()."<BR>";
|
||||
?>
|
||||
?>
|
||||
</programlisting>
|
||||
</informalexample>
|
||||
</para>
|
||||
|
@ -529,7 +529,7 @@ fbsql_select_db("nonexistentdb");
|
|||
echo fbsql_errno().": ".fbsql_error()."<BR>";
|
||||
$conn = fbsql_query("SELECT * FROM nonexistenttable");
|
||||
echo fbsql_errno().": ".fbsql_error()."<BR>";
|
||||
?>
|
||||
?>
|
||||
</programlisting>
|
||||
</informalexample>
|
||||
</para>
|
||||
|
@ -609,7 +609,7 @@ while ($row = fbsql_fetch_array ($result)) {
|
|||
echo "fullname: ".$row[1]."<br>\n";
|
||||
}
|
||||
fbsql_free_result ($result);
|
||||
?>
|
||||
?>
|
||||
</programlisting>
|
||||
</example>
|
||||
</refsect1>
|
||||
|
@ -668,7 +668,7 @@ while ($row = fbsql_fetch_assoc ($result)) {
|
|||
echo $row["fullname"];
|
||||
}
|
||||
fbsql_free_result ($result);
|
||||
?>
|
||||
?>
|
||||
</programlisting>
|
||||
</example>
|
||||
</refsect1>
|
||||
|
@ -759,7 +759,7 @@ type: $meta->type
|
|||
$i++;
|
||||
}
|
||||
fbsql_free_result ($result);
|
||||
?>
|
||||
?>
|
||||
</programlisting>
|
||||
</example>
|
||||
<para>
|
||||
|
@ -853,7 +853,7 @@ while ($row = fbsql_fetch_object ($result)) {
|
|||
echo $row->fullname;
|
||||
}
|
||||
fbsql_free_result ($result);
|
||||
?>
|
||||
?>
|
||||
</programlisting>
|
||||
</example>
|
||||
</para>
|
||||
|
@ -1020,7 +1020,7 @@ password
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>int <function>fbsql_field_seek</function></funcdef>
|
||||
<funcdef>bool <function>fbsql_field_seek</function></funcdef>
|
||||
<paramdef>resource <parameter>result</parameter></paramdef>
|
||||
<paramdef>int <parameter>field_offset</parameter></paramdef>
|
||||
</funcprototype>
|
||||
|
@ -1107,7 +1107,7 @@ while ($i < $fields) {
|
|||
}
|
||||
fbsql_close();
|
||||
|
||||
?>
|
||||
?>
|
||||
</programlisting>
|
||||
</example>
|
||||
</para>
|
||||
|
@ -1123,7 +1123,7 @@ fbsql_close();
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>int <function>fbsql_free_result</function></funcdef>
|
||||
<funcdef>bool <function>fbsql_free_result</function></funcdef>
|
||||
<paramdef>int <parameter>result</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
|
@ -1521,7 +1521,7 @@ echo "$num_rows Rows\n";
|
|||
<?php
|
||||
$result = fbsql_query ("SELECT * WHERE 1=1")
|
||||
or die ("Invalid query");
|
||||
?>
|
||||
?>
|
||||
</programlisting>
|
||||
</example>
|
||||
</para>
|
||||
|
@ -1536,7 +1536,7 @@ $result = fbsql_query ("SELECT * WHERE 1=1")
|
|||
<?php
|
||||
$result = fbsql_query ("SELECT my_col FROM my_tbl")
|
||||
or die ("Invalid query");
|
||||
?>
|
||||
?>
|
||||
</programlisting>
|
||||
</example>
|
||||
</para>
|
||||
|
@ -1631,7 +1631,7 @@ $result = fbsql_query ("SELECT my_col FROM my_tbl")
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>int <function>fbsql_select_db</function></funcdef>
|
||||
<funcdef>resource <function>fbsql_select_db</function></funcdef>
|
||||
<paramdef>string <parameter>database_name</parameter></paramdef>
|
||||
<paramdef>resource
|
||||
<parameter>
|
||||
|
@ -1703,7 +1703,7 @@ while ($i < fbsql_num_rows ($result)) {
|
|||
echo $tb_names[$i] . "<BR>";
|
||||
$i++;
|
||||
}
|
||||
?>
|
||||
?>
|
||||
</programlisting>
|
||||
</example>
|
||||
</para>
|
||||
|
@ -1728,7 +1728,7 @@ while ($i < fbsql_num_rows ($result)) {
|
|||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
Returns: <literal>TRUE</literal> if warnings is turned on otherwise <literal>FALSE</literal>.
|
||||
Returns <literal>TRUE</literal> if warnings is turned on otherwise <literal>FALSE</literal>.
|
||||
</para>
|
||||
<para>
|
||||
<function>fbsql_warnings</function> enables or disables FrontBase
|
||||
|
|
Loading…
Reference in a new issue