Welcome Guest, Not a member yet? Register   Sign In
[Closed] error Undefined variable: query
#7

[eluser]InsiteFX[/eluser]
If he is accessing the database in a Library then he needs to get the CI Super object.

Code:
private $_ci;   // The CI Super object

public function __construct()
{
  $this->_ci = get_instance();
}

// Then he needs to use the methods like so

$this->_ci->session->set_userdata($data);


$query = $this->_ci->db->query("UPDATE users SET ip = $ip WHERE user_id = $this->user_id");



Messages In This Thread
[Closed] error Undefined variable: query - by El Forum - 04-24-2014, 11:21 PM
[Closed] error Undefined variable: query - by El Forum - 04-24-2014, 11:37 PM
[Closed] error Undefined variable: query - by El Forum - 04-24-2014, 11:38 PM
[Closed] error Undefined variable: query - by El Forum - 04-24-2014, 11:42 PM
[Closed] error Undefined variable: query - by El Forum - 04-24-2014, 11:47 PM
[Closed] error Undefined variable: query - by El Forum - 04-24-2014, 11:50 PM
[Closed] error Undefined variable: query - by El Forum - 04-25-2014, 07:58 AM
[Closed] error Undefined variable: query - by El Forum - 04-25-2014, 08:18 AM



Theme © iAndrew 2016 - Forum software by © MyBB