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;
}
}
------------------------------------------------------------------------
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