Posts

Showing posts from July, 2020

codeignitor 3 Advance search system with pagination

Controller.php public function searchCars($page=1) {              $minresult = $minresult = $minmodelyear = $maxmodelyear = "";              $searchcompany = $this->input->post('searchcompany');         $searchcity = $this->input->post('searchcity');         $minprice = $this->input->post('minprice');         $maxprice = $this->input->post('maxprice');         $minmodelyeartext = $this->input->post('minmodelyear');     $maxmodelyeartext = $this->input->post('maxmodelyear');     $model = $this->input->post('model');     $enginetype = $this->input->post('enginetype');         $mincapacity = $this->input->post('mincapacity');         $maxcapacity = $this->input->post('maxcapacity');     ...