Thread: Doh!
View Single Post
Old 04-16-2009, 09:19 PM   #2 (permalink)
Sam Granger
The Acquainted
 
Join Date: Sep 2007
Posts: 126
Thanks: 4
Sam Granger is on a distinguished road
Default

And if it helps, here is the executeQuery code:

PHP Code:
    public function executeQuery($query) {
        if(
$res mysqli_query($this->link,$query)) {
            return 
$res;
        }
        else {
            
$this->dbError mysqli_error($this->link);
            return 
false;
        }
    } 
Sam Granger is offline  
Reply With Quote