Blog
At Prism ICT, we offer a comprehensive range of services designed to help you achieve digital excellence At Prism ICT, we offer a comprehensive range of services
codeigniter count_all_results without reset query
If you want to count total data from table before get result then you can follow below codex. $this->select('Name'); $TotalData = $this->db->count_all_results('users', false); $this->limi(10, 2); $Query = $this->db->get();
Input variables exceeded 1000, change max_input_vars in php.ini
Locate your running php.ini for your selected project where you getting this error. Then simple add this below code inside your php.ini file. Hope this will solved your problem. #
Mac OS X Start / Stop / Restart Apache Web Server
Follow below rules for Stop Apache sudo apachectl stop or sudo apachectl -k stop Follow below rules for Start Apache sudo apachectl start or sudo apachectl -k start Follow below