Welcome Guest, Not a member yet? Register   Sign In
Error: Call to undefined method CI_Input::CI_Input
#2

[eluser]Eric Barnes[/eluser]
Remember ci 2 is php5 only -
Code:
function MY_Input() {
        parent::CI_Input();
        $this->_headers = $this->_clean_input_data($this->_get_headers());
    }

should be:
Code:
public function __construct() {
        parent::__construct();
        $this->_headers = $this->_clean_input_data($this->_get_headers());
    }


Messages In This Thread
Error: Call to undefined method CI_Input::CI_Input - by El Forum - 07-14-2011, 10:05 AM
Error: Call to undefined method CI_Input::CI_Input - by El Forum - 07-14-2011, 10:17 AM
Error: Call to undefined method CI_Input::CI_Input - by El Forum - 07-14-2011, 04:01 PM



Theme © iAndrew 2016 - Forum software by © MyBB