Skip to content

Instantly share code, notes, and snippets.

@arifulhb
Created December 29, 2014 09:19
Show Gist options
  • Save arifulhb/4410c14d799f96815e1e to your computer and use it in GitHub Desktop.
Save arifulhb/4410c14d799f96815e1e to your computer and use it in GitHub Desktop.
Get Total Row Numbers
public function getTotalNum(){
$this->db->select('mrcnt_sn');
$this->db->from('tblmerchant');
$res=$this->db->get();
return $res->num_rows;
}//end function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment