mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
fix #28648: typo in the examples
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@160642 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
9902e0b467
commit
ccba0320cb
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<!-- $Revision: 1.9 $ -->
|
||||
<refentry id="function.mysqli-field-count">
|
||||
<refnamediv>
|
||||
<refname>mysqli_field_count</refname>
|
||||
|
@ -52,7 +52,7 @@ $mysqli->query( "INSERT INTO friends VALUES (1,'Hartmut'), (2, 'Ulf')");
|
|||
|
||||
$mysqli->real_query($HTTP_POST_VARS['query']);
|
||||
|
||||
if (mysql_field_count($link)) {
|
||||
if (mysqli_field_count($link)) {
|
||||
/* this was a select/show or describe query */
|
||||
$result = $mysqli->store_result();
|
||||
|
||||
|
@ -83,7 +83,7 @@ mysqli_query($link, "INSERT INTO friends VALUES (1,'Hartmut'), (2, 'Ulf')");
|
|||
|
||||
mysqli_real_query($link, $HTTP_POST_VARS['query']);
|
||||
|
||||
if (mysql_field_count($link)) {
|
||||
if (mysqli_field_count($link)) {
|
||||
/* this was a select/show or describe query */
|
||||
$result = mysqli_store_result($link);
|
||||
|
||||
|
|
Loading…
Reference in a new issue