Welcome Guest, Not a member yet? Register   Sign In
Call to a member function real_escape_string() on a non-object
#11

(09-02-2015, 12:57 PM)Narf Wrote:
(09-02-2015, 09:47 AM)Mdev Wrote: I have the same problem although i have the autoinit set.
I needed to do this inside the

Quote:C:\work\Codefi UI\codeigniter\system\database\drivers\mysqli\mysqli_driver.php
to make the error go away.


Code:
// --------------------------------------------------------------------

/**
* Platform-dependant string escape
*
* @param    string
* @return    string
*/
protected function _escape_str($str)
{
    if($this->conn_id)
    {
        return $this->conn_id->real_escape_string($str);
    }
}

DO NOT DO THIS! You're making yourself vulnerable to SQL injections!

What do you suggest? I got the same problem
Reply


Messages In This Thread
RE: Call to a member function real_escape_string() on a non-object - by brandotalaguit - 05-11-2018, 09:53 PM



Theme © iAndrew 2016 - Forum software by © MyBB