mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 08:58:56 +00:00
[APIS-553][PHP]Manual page for cubrid_close_request() should be edited
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@330457 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
df17cfa1a0
commit
cc82b59eab
1 changed files with 2 additions and 2 deletions
|
@ -47,7 +47,7 @@
|
|||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
$con = cubrid_connect ("dbsvr.cubrid.com", 12345, "demodb");
|
||||
$con = cubrid_connect ("localhost", 33000, "demodb");
|
||||
if ($con) {
|
||||
echo "connected successfully";
|
||||
$req = cubrid_execute ( $con, "select * from members",
|
||||
|
@ -57,7 +57,7 @@ if ($con) {
|
|||
echo $id;
|
||||
echo $name;
|
||||
}
|
||||
cubrid_close_requst($req); // or you can use cubrid_close_prepare($req)
|
||||
cubrid_close_request($req); // or you can use cubrid_close_prepare($req)
|
||||
}
|
||||
cubrid_disconnect($con);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue