[APIS-558][PHP]some bug about document

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@330466 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Esen Sagynov 2013-06-10 08:11:51 +00:00
parent f70ac612ce
commit 33f0095713
2 changed files with 4 additions and 4 deletions

View file

@ -16,7 +16,7 @@
<para>
The <function>cubrid_close_prepare</function> function closes the request
handle given by the <parameter>req_identifier</parameter> argument, and
releases the memory region related to the handle. It is a alias of
releases the memory region related to the handle. It is an alias of
<function>cubrid_close_request</function>.
</para>
</refsect1>
@ -47,7 +47,7 @@
<programlisting role="php">
<![CDATA[
<?php
$con = cubrid_connect ("dbsvr.cubrid.com", 12345, "demodb");
$con = cubrid_connect ("localhost", 33000, "demodb", "dba", "");
if ($con) {
echo "connected successfully";
$req = cubrid_execute ( $con, "select * from members",

View file

@ -16,7 +16,7 @@
<para>
The <function>cubrid_close_request</function> function closes the request
handle given by the <parameter>req_identifier</parameter> argument, and
releases the memory region related to the handle. It is a alias of
releases the memory region related to the handle. It is an alias of
<function>cubrid_close_prepare</function>.
</para>
</refsect1>
@ -47,7 +47,7 @@
<programlisting role="php">
<![CDATA[
<?php
$con = cubrid_connect ("localhost", 33000, "demodb");
$con = cubrid_connect ("localhost", 33000, "demodb", "dba", "");
if ($con) {
echo "connected successfully";
$req = cubrid_execute ( $con, "select * from members",