Im trying to install this PHP/SQL browser game and it requires adodb on the server, this is no biggie I have it installed and good to go.
When trying to run the game it gives me an error:
"Fatal error: Call to a member function on a non-object in www/myhost/footer.php on line 21"
Here is what the code says on that line in footer.php:
$online = $debug_query->RecordCount();
I take it, its saying that "RecordCount" isnt defined? if that is the case I located where it is defined and included the file, but its still giving me the error..
Here is what the defining file says:
function RecordCount() {return $this->_numOfRows;}
in footer.php I added "include ("backends/adodb/adodb.inc.php");" which links to the file defining RecordCount()
any ideas??