I store all of my login information for databases in files outside of the public tree in variables such as

$hostname = '172.0.0.0';
$dbname = 'myname_mydbname';
$username = 'myname_user';
$pw = 'password';

That's pretty standard.

The problem is that this particular hosting I am working with requires the myname_ to be appended to the front of all databases and user names. When I store these strings and pass them to a PDO it drops everything in the username after myname, and drops the password string all together... If I put the username and password in the function as strings instead of variables everything works. I am at my wits end. can anyone help? here is the function as it is in code.

Does not work:

$this -> DB = new PDO ("mysql:host={$hostname}; dbname={$dbname}", $username, $pw);

works:

$this -> DB = new PDO ("mysql:host={$hostname};dbname={$dbname}", 'myname_user', 'password');

I am hoping someone here can make me feel stupid... thanks in advance. -David

the error might help...

Failed to get DB handle: SQLSTATE[28000] [1045] Access denied for user 'myname'@'localhost' (using password: NO)

link|improve this question

57% accept rate
Try var_dump($username); right before the new PDO statement. – zerkms Oct 13 '10 at 23:08
thats interesting. I get NULL NULL. – david Oct 13 '10 at 23:15
$hostname = '172.0.0.0'; $dbname = 'myname_mydbname'; $username = 'myname_user'; $pw = 'password'; – david Oct 13 '10 at 23:16
are all stored in the same place... and sorry about putting that in three different comments – david Oct 13 '10 at 23:16
feedback

2 Answers

up vote 0 down vote accepted

Nothing I can find in the PDO documentation suggests that you can specify username or password in the DSN string - it is a "Database Source Name" not "Database Source Name and Authentication" String the fact you are using no password should be a hint to this, and the username being 'myname' is probably just because most RDBMs use the $USER environment var to connect if none is specified (which i must assume is set to 'myname')

i.e. i think you simply have to use the extra parameters to pass the authentication credentials

link|improve this answer
Just checked - for some backends (e.g. postgreSQL) you can specify authentication in the DSN, but not mysql. – tobyodavies Oct 13 '10 at 23:17
Well, it seems the variables are actually just showing as null in the file that uses them. You are right about about it assuming the $USER because of it though. I am going to have to trouble shoot why the variables are null, I can echo a statement from the file they are stored in, so I know it is being included. – david Oct 13 '10 at 23:27
1  
oops, i misread your question quite a bit :( is it inside a function that this is being called, do you have global $username? thats a trap i've fallen into many times – tobyodavies Oct 13 '10 at 23:46
No, I didnt, thanks. – david Oct 14 '10 at 0:09
feedback

As a work around I built get functions in the file that the information is stored that return the strings, and it works. Super strange, but it works.

link|improve this answer
$this -> DB = new PDO ("mysql:host=".getHost().";dbname=".getDBName(), getUserName(), getPW()); – david Oct 13 '10 at 23:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.