From 28baa281163d7df2820c8a3d389f4d855f44d2c4 Mon Sep 17 00:00:00 2001 From: Enrique Garcia Briones Date: Thu, 11 Mar 2004 14:23:06 +0000 Subject: [PATCH] As I said, the parameter in the description should be alwas host git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@153427 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/mysqli/functions/mysqli-connect.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/reference/mysqli/functions/mysqli-connect.xml b/reference/mysqli/functions/mysqli-connect.xml index 9d0afef5eb..851c420b64 100644 --- a/reference/mysqli/functions/mysqli-connect.xml +++ b/reference/mysqli/functions/mysqli-connect.xml @@ -1,5 +1,5 @@ - + mysqli_connect @@ -11,7 +11,7 @@ Procedural style objectmysqli_connect - stringhostname + stringhost stringusername stringpasswd stringdbname @@ -23,7 +23,7 @@ mysqli __construct - stringhostname + stringhost stringusername stringpasswd stringdbname @@ -33,7 +33,7 @@ The mysqli_connect function attempts to open a connection to the MySQL Server - running on hostname which can be either a host name or an IP address. Passing the + running on host which can be either a host name or an IP address. Passing the &null; value or the string "localhost" to this parameter, the local host is assumed. When possible, pipes will be used instead of the TCP/IP protocol. If successful, the mysqli_connect will return an object representing the connection to the database, or &false; on failure. @@ -51,7 +51,7 @@ The port and socket parameters are used in - conjunction with the hostname parameter to further control how to connect + conjunction with the host parameter to further control how to connect to the database server. The port parameter specifies the port number to attempt to connect to the MySQL server on, while the socket parameter specifies the socket or named pipe that should be used. @@ -60,7 +60,7 @@ Specifying the socket parameter will not explicitly determine the type of connection to be used when connecting to the MySQL server. How the connection is made to the - MySQL database is determined by the hostname parameter. + MySQL database is determined by the host parameter.