mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Removed spurious 'hostname' argument for msql_connect(). Clarified 'server' parameter description for msql_connect()
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@95450 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
3612f5240a
commit
c09bb1e27c
1 changed files with 7 additions and 9 deletions
|
@ -8,7 +8,7 @@
|
|||
instead -->
|
||||
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.26 $ -->
|
||||
<!-- $Revision: 1.27 $ -->
|
||||
<reference id="ref.msql">
|
||||
<title>mSQL functions</title>
|
||||
<titleabbrev>mSQL</titleabbrev>
|
||||
|
@ -33,13 +33,13 @@
|
|||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<methodsynopsis>
|
||||
<methodsynopsi
|
||||
<type>int</type><methodname>msql</methodname>
|
||||
<methodparam><type>string</type><parameter>database</parameter></methodparam>
|
||||
<methodparam><type>string</type><parameter>query</parameter></methodparam>
|
||||
<methodparam><type>int</type><parameter>link_identifier</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
<para> xs
|
||||
Returns a positive mSQL query identifier to the query result, or
|
||||
&false; on error.
|
||||
</para>
|
||||
|
@ -122,9 +122,6 @@
|
|||
<title>Description</title>
|
||||
<methodsynopsis>
|
||||
<type>int</type><methodname>msql_connect</methodname>
|
||||
<methodparam choice="opt"><type>string</type><parameter>
|
||||
hostname
|
||||
</parameter></methodparam>
|
||||
<methodparam choice="opt"><type>string</type><parameter>
|
||||
server
|
||||
</parameter></methodparam>
|
||||
|
@ -141,9 +138,10 @@
|
|||
</para>
|
||||
<para>
|
||||
<function>msql_connect</function> establishes a connection to a
|
||||
mSQL server. The <parameter>server</parameter> parameter can also
|
||||
include a port number. eg. "hostname:port". It defaults
|
||||
to 'localhost'.
|
||||
mSQL server. The <parameter>server</parameter> parameter is a hostname
|
||||
or IP address, and can optionally include a port number after a single
|
||||
colon. eg. "192.168.0.2:4322". It defaults to 'localhost' and
|
||||
port '4333' if the argument is not set.
|
||||
</para>
|
||||
<para>
|
||||
In case a second call is made to
|
||||
|
|
Loading…
Reference in a new issue