ID:          25138
 Updated by:  [EMAIL PROTECTED]
 Reported By: curt at zirzow dot dyndns dot org
-Status:      Open
+Status:      Bogus
 Bug Type:    Documentation problem
 PHP Version: Irrelevant
 New Comment:

Actually it works.

[EMAIL PROTECTED]:/$ php -v
4.2.3
[EMAIL PROTECTED]:/$ php
<?php

error_reporting(0);

mysql_connect('localhost','root','foo') or die("I'm dead :: " .
mysql_error() . "\n");

?>

output :

I'm dead :: Access denied for user: '[EMAIL PROTECTED]' (Using password:
YES)



Previous Comments:
------------------------------------------------------------------------

[2003-08-18 21:26:52] curt at zirzow dot dyndns dot org

Description:
------------
mysql_connect: example 1:
<?php
    $link = mysql_connect("localhost", "mysql_user", "mysql_password")
        or die("Could not connect: " . mysql_error());
    print ("Connected successfully");
    mysql_close($link);
?>

mysql_error() will not give a reason why the connect failed, according
to:

http://bugs.php.net/bug.php?id=24689

php4 will never give that message but php5 will. I havn't tested to see
if this is true for php5.

An alternative is to use $php_errormsg, but that can only used if
php_ini.track_errors is set.

Related Issues:
Reason this occurs [closed]

mysql_error() documentation [closed]
http://bugs.php.net/bug.php?id=20743

Thanks,
Curt



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=25138&edit=1


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to