|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2007-08-28 11:10 UTC] glowacki at europa dot pl
Description:
------------
file: en/reference/msql/reference.xml
...
/* Connecting, selecting database */
$link = msql_connect('localhost', 'username', 'password')
or die('Could not connect : ' . msql_error($link));
// function 'msql_connect' require only one parameter: hostname|hostaddress
Expected result:
----------------
/* Connecting, selecting database */
$link = msql_connect('localhost')
or die('Could not connect : ' . msql_error($link));
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Fri Mar 20 11:00:02 2026 UTC |
Expected result: ---------------- /* Connecting, selecting database */ $link = msql_connect('localhost') or die('Could not connect : ' . msql_error());