vote up 1 vote down star

Hi, I have a class to connect to my database, strip stuff and return things from a db query. Anyhow, the problem I am having is that I am tryinmg to call runQuery() method but every time I try, I get this error:

Fatal error: Call to undefined function runMyQuery() in DatabaseConnector.php line 22

Any ideas perhaps? I know runQuery is private but it is within the same class. Just for kicks I changed it to public any way, and still got the same error :(

    final class DatabaseConnector
{
	private $db;

	public function DatabaseConnector()
	{
		//	constructor
	}

	public function connectMySQL($host, $user, $passwrd, $db, $query)
	{
		@ $db = new mysqli($host, $user, $passwrd, $db);

		if (mysqli_connect_errno())
		{
			return mysqli_connect_errno();
		}
		else
		{
			$queryResult = runQuery($query);

			return $queryResult;
		}
	}

	private function runQuery($query)
	{
		$result = $db->query($query);

		return $result;
	}
}
flag

1 Answer

vote up 10 vote down check

In PHP you have to prefix object level methods/variables with $this otherwise it will look for the function/variable in the global "namespace".

So change $queryResult = runQuery($query); to $queryResult = $this->runQuery($query);

link|flag
Yeah, I hate that. I guess you just get used to it. – Don Kirkby Jul 19 at 4:25
2  
When it comes to PHP, you get used to a lot of little nuances like that. – Jordan S. Jones Jul 19 at 4:50
cool thanks, this works :) – Tomaszewski Jul 20 at 12:18

Your Answer

Get an OpenID
or

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