how integration phpGrid with codeigniter? i use view to display jGrid but not working…
1 Answers
Use following link for reference
Place the controller code between by replaceing –Controller code– and save the file with the name php_grid in controller folder.
class Php_grid extends CI_Controller {
public function index(){
$this->load->database();
$this->load->helper('url');
–Controller Code–
$this->load->view('html',array('out' => $out));
}
}
Finallay in view folder paste the html part in html.php file. change your router.php file accordingly.
Your Answer