CI コードの一部を見るのを手伝ってください
$this->db->like('caller_ip',$condition);
$this->gt;db->select('caller_ip, send_ip, star_time,end_time');
$query = $this->db->get('voice');
return $query->result_array();
このように曖昧に書いて大丈夫でしょうか?そうでない場合、どうすれば変更できますか?
-----解決策---------
曖昧な get_where メソッドがあります。
class PitypeModel extends Model {
$query = array();
$query = $this->db->get_where('table_name', array('recodname' => $pitypetype) );
$query->result();