문제

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

도움이 되었습니까?

해결책

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();
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top