Pages

Tuesday, January 3, 2017

Create Helper function in CodeIgniter

Create Helper function in Codeigniter
------------------------------------------------------------------------
if(!function_exists('sqlRecordsCount')){
function sqlRecordsCount(){
$ci1 =& get_instance();

           // Get Connection of Another Database Defined

   $db2 = $ci1->load->database('otherdb', TRUE);
 

            $query = "SELECT book_id from books";
$query = $db2->query($query);

// echo $db2->last_query();
$result = $query->result_array();
return $result;

}

}

print_r($sqlRecordsCount());

No comments:

Post a Comment