[PHP-DEV] Bug #13466 Updated: Errors when using variables as the host parameter From: neil.walker <email protected>
Date: 09/27/01

ID: 13466
User updated by: neil.walker <email protected>
Reported By: neil.walker <email protected>
Status: Open
Bug Type: MySQL related
Operating System:
PHP Version: 4.0.6
New Comment:

If I do:

$user="frank";
$pwd="skinner";
$db="db.cp-productions.f2s.com:walkern";

The following works fine:
$conn = mysql_connect("db.cp-productions.f2s.com:walkern", $user, $pwd);

If I do:
$conn = mysql_connect($db, $user, $pwd);

The following error occurs:
Warning: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) in
/web/sites/253/walkern/www.cp-productions.f2s.com/inc/news.php

I think it's something to do with the ':walkern' bit. It works ok on my other site where
I have $db="localhost".

I've tried putting it in quotes, etc.

I have tried it on a 4.06 and a 4.01 build (different ISP's) and both do the same.

Neil.

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

[2001-09-27 08:20:38] neil.walker <email protected>

If I do:

$user="frank";
$pwd="skinner";
$db="db.cp-productions.f2s.com:walkern";

The following works fine:
$conn = mysql_connect("db.cp-productions.f2s.com:walkern", $user, $pwd);

If I do:
$conn = mysql_connect($db, $user, $pwd);

The following error occurs:
Warning: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) in /web/sites/253/walkern/www.cp-productions.f2s.com/inc/news.php

I think it's something to do with the ':walkern' bit. It works ok on my other site where I have $user="localhost".

I've tried putting it in quotes, etc.

I have tried it on a 4.06 and a 4.01 build (different ISP's) and both do the same.

Neil.

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

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

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>