Fixed minor typos.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@111148 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Dirkjan Ochtman 2003-01-09 12:58:05 +00:00
parent 9ca01b95d7
commit 5a4f6c9ce4
2 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/mysql.xml, last change in rev 1.45 -->
<refentry id="function.mysql-fetch-assoc">
<refnamediv>
@ -55,7 +55,7 @@
}
if (!mysql_select_db("mydbname")) {
echo "Unable to select mydb: " . mysql_error();
echo "Unable to select mydbname: " . mysql_error();
exit;
}

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/mysql.xml, last change in rev 1.62 -->
<refentry id="function.mysql-stat">
<refnamediv>
@ -30,7 +30,7 @@
<![CDATA[
<?php
$link = mysql_connect('localhost', "mysql_user", "mysql_password");
$status = explode(' ',mysql_stat($link));
$status = explode(' ', mysql_stat($link));
print_r($status);
?>
]]>