View Single Post
Old 07-15-2009, 03:17 AM   #4 (permalink)
russellharrower
The Contributor
 
russellharrower's Avatar
 
Join Date: Jul 2009
Posts: 80
Thanks: 13
russellharrower is on a distinguished road
Default

Quote:
Originally Posted by gregor171 View Post
this was really a quick look into code:
$result=$DBData->query...
$DBData is not an object is what the error says.
It should be something like (check the rest of the code):
$result = $this->DBData->query...
but you need a variable:
protected $DBData;
somewhere...
this variable should be an instance of $myObj...

I also noticed confusion: dbopen.php or opendb.php

Sorry its dbopen.php

mmm i cant get it to work...

Last edited by russellharrower : 07-15-2009 at 03:40 AM.
russellharrower is offline  
Reply With Quote