function __construct() { parent::CI_Input(); /* allow $_GET */ $pos = strrpos($_SERVER['REQUEST_URI'], '?'); $qry = is_int($pos) ? substr($_SERVER['REQUEST_URI'], ++$pos) : ''; parse_str($qry, $_GET); /* allow $_GET */ }
function MY_Input() { return parent::CI_Input(); }
function MY_Input() { parent::CI_Input(); }
public function __construct() { $this->_POST_ORIG = $_POST; // save the original before it is modified parent::CI_Input(); }
/** * Constructor * * @return void * @author Ed Finkler */ public function MY_Input() { parent::CI_Input(); $this->_makeInspektSuperCage(); }
/** * Constructor * * @access public */ function SP_Input() { parent::CI_Input(); }