From 2a56e2bba7a07de7b9b87cf961384d70e896969e Mon Sep 17 00:00:00 2001 From: George Peter Banyard Date: Tue, 4 Jun 2019 16:19:35 +0000 Subject: [PATCH] Typo git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@347542 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/mysqli/mysqli/error.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/mysqli/mysqli/error.xml b/reference/mysqli/mysqli/error.xml index 14a518a64b..8a73491c3b 100644 --- a/reference/mysqli/mysqli/error.xml +++ b/reference/mysqli/mysqli/error.xml @@ -55,7 +55,7 @@ if ($mysqli->connect_errno) { } if (!$mysqli->query("SET a=1")) { - printf("Errormessage: %s\n", $mysqli->error); + printf("Error message: %s\n", $mysqli->error); } /* close connection */ @@ -76,7 +76,7 @@ if (mysqli_connect_errno()) { } if (!mysqli_query($link, "SET a=1")) { - printf("Errormessage: %s\n", mysqli_error($link)); + printf("Error message: %s\n", mysqli_error($link)); } /* close connection */ @@ -87,7 +87,7 @@ mysqli_close($link); &examples.outputs;