04-16-2009, 09:19 PM
|
#2 (permalink)
|
|
The Acquainted
Join Date: Sep 2007
Posts: 126
Thanks: 4
|
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; } }
|
|
|
|