Using the MySQLi class made by Ajillion :: https://github.com/ajillion/PHP-MySQLi-Database-Class
I would like to execute the following command
$command =
This has appeared to solve the issue.
change line 101
$this->_query = filter_var($query, FILTER_SANITIZE_STRING);
to
$this->_query = $this->_mysqli->real_escape_string($query);
I then went on to add
if(gettype($meta) == "boolean") return $results;
after line 401
There may be a better way to do this but this is what I did and it seems to work.