up vote 0 down vote favorite
share [g+] share [fb]

Is it possible to create a connection in a PHP class file and use it in all of the different methods in the class? I am trying to open a connection in the constructor and i get an error when i get to the close connection method saying that the argument that I've provided in the mysql_close() statement isn't a valid MYSQL-Link souce.


Update: Ok I figured it out I had a variable misspelled.

link|improve this question

1  
It would be helpful if we saw some code. – musicfreak Jun 10 '09 at 22:42
feedback

closed as off topic by Marc Gravell Jun 11 '09 at 8:04

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

up vote 2 down vote accepted

It is entirely possible, you just need to make the database link a class member:

class MyDBClass {
    var $sth;

    function __construct($host, $user, $pass) {
        $this->sth = mysql_connect($host, $user, $pass);
    }

    function close() {
        mysql_close($this->sth);
    }
}
link|improve this answer
that is what I tried to do but I kept getting this: mysql_close(): supplied argument is not a valid MySQL-Link resource in /home/pilferingpanda/test.whysalltherumgone.com/pages/Tools/KickstartCreator/con‌​nection.php – TheGNUGuy Jun 11 '09 at 3:49
I just var_dumped it and it returned null, does the connection close after after a few seconds? – TheGNUGuy Jun 11 '09 at 3:54
feedback

As long as the variable has the correct scope, it should work fine through the whole class. One way to do this would be to store the connection as a member variable, e.g.

$this->connection = mysql_connect(...);

This will make it visible to all class methods as long as you use the same method to retrieve it, e.g.

mysql_close($this->connection);
link|improve this answer
feedback

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