Question

I want to load the content after submitting the form in a popup. i have try modal and dialog box which are predefined with a div and then on ajax call the data is appended any suggestion are very much helpful

Était-ce utile?

La solution

Did you remember to add $CI =& get_instance(); in your library's constructor or at the top of your helper file so you can use all the CodeIgniter resources in your libraries and helpers? (see also here in the docs)

You can then call CodeIgniter resources like this:

$CI->load->helper('file_helper');
read_file($file);    

$CI->load->library('session');
$CI->session->sess_destroy();
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top