Line 29 (I think is):
PHP Code:
$this->db->QFetchArray/*snip*/
The problem is you can only use $this in OOP (classes), your using it in a function (As a variable as anderswc has pointed out, change the name of it to something else).
Also, this will only work in PHP5 or above (when OOP was implemented)
Check with the source of the script for more help.
__________________
My Blog/Site: Please login or register to view this content. Registration is FREE
Last edited by rogem002; 02-12-2009 at 06:53 AM..
|