Jump to content

Recommended Posts

Hi all,

 

I've got a small problem that's driving me nuts (perhaps I'm just missing something). I've written a class that basically loads data from a file into an array (essentially my own custom config file). I want to use this array to assign the values to the database connections. When I use the following it works perfectly:

 

$this->host = "localhost";

$this->name = "admin";

$this->password = "nimda";

$this->database = "MyDatabase";

 

but if I use the following it gives me a "No database selected" error:

 

$this->host = "localhost";

$this->name = "admin";

$this->password = "nimda";

$this->database = settings[1];

 

When testing, I echo settings[1] within the class it displays "MyDatabase" so I know that the data has indeed been loaded correctly into the array.

 

The function that I have written to connect the database follows:

 

function dbconnect(){

$connection = mysql_connect($this->host,$this->name,$this->password);

mysql_select_db($this->database,$connection);

}

 

Any ideas why this is happening or what he solution could be. Any help at all will be greatly appreciated.

 

 

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.