Fix Doc Bug #62224: Typo in documentation

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@325970 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Nikita Popov 2012-06-04 14:48:56 +00:00
parent e70f20002a
commit 68869c4839

View file

@ -90,7 +90,7 @@ if ($mysqli->connect_errno) {
echo "Failed to connect to MySQL: " . $mysqli->connect_error;
}
$res = $mysqli->query("SELECT 'choices to please everybody,' AS _msg FROM DUAL");
$res = $mysqli->query("SELECT 'choices to please everybody.' AS _msg FROM DUAL");
$row = $res->fetch_assoc();
echo $row['_msg'];
?>