How to Check Ajax Request in CodeIgniter
“if ( $this->input->is_ajax_request() ) {
// your code here…
}“
“if ( $this->input->is_ajax_request() ) {
// your code here…
}“
$this->db->insert('users', $data); # where $data is an array $insert_id = $this->db->insert_id(); # insert_id()... read more
How to check laravel version: Step1: Find Application.php file in your app and... read more
Unable to negotiate with 140.211.10.43: no matching key exchange method found. Their... read more
Below are the steps: 1) Open File Explorer 2) Click on View Tab 3) Click/Check... read more
It requires two main steps: Add Virtual Host Entries to vhosts Configuration file. Assign... read more
With our data increasingly moving to the cloud, chances are that whenever... read more
Below code can be helpful $this->response->file($this->DIR.$file, array('download' => true, 'name' => "$file")); read more
Screen Got stuck eventually with this error during CodeIgniter development. Fatal error: Class... read more
$this->session->mark_as_flash('item'); # Version 3.x only $this->session->mark_as_flash(array('item', 'item2')); # Version 3.x only Array to... read more
Leave a Reply