Jump to content

Silly OO problem!


jonsamwell

Recommended Posts

Hi,

 

I am having problems getting this method to see the variables! I keep getting the error.

 

'Fatal error: Cannot access empty property in C:\wamp\www\parser\Parser\Database\Database_Connection.php on line (db_connect() method)'

 

I don't understand why the variables are seen as empty as they are intitalised????

 

class Database_Connection {

    var $username = 'User_main';
    var $password = 'password';
    var $server = 'localhost';
    var $database_name = 'pricing';
    var $link_identifier = null;


    function _constructor()
    {//Default Constructor
    }

    function db_connect()
    {
        $this->$link_identifier = mysql_connect($this->$server, $this->$username, $this->$password);
    }
}

 

If i hard code the values everything works fine.

Link to comment
Share on other sites

mysqli stands for "mysql Improved". It's recommended extension to use, when connecting to MySQL server version 4.1 or later.

 

Foreign key capability is a thing of storage engine itself. MyISAM doesn't have it, InnoDB does.

 

whats the big difference between mysql and mysqli?

 

It's object oriented, enables use of prepared statements (and some other features, that mysql lacks), it is said to be faster.

Link to comment
Share on other sites

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.