Are you using CodeIgniter?
In that case you have a syntax error in:
$this->db->where('rut_usu=',$rut_usu,'AND fecha_ini=',$fecha_ini,'AND fecha_ter=',$fecha_ter);
The correct way to write it is:
$this->db->where("rut_usu='".$rut_usu."' AND fecha_ini='".$fecha_ini."' AND fecha_ter='".$fecha_ter."'");
Notice that the values within the SQL statement must be enclosed in quotation marks. And what have you used ',' to concatenate, instead of '.'
Another way to write it is:
$this->db->where('rut_usu', $rut_usu);
$this->db->where('fecha_ini', $fecha_ini);
$this->db->where('fecha_ter', $fecha_ter);
And another:
$array = array('rut_usu =' => $rut_usu, 'fecha_ini =' => $fecha_ini, 'fecha_ini =' => $fecha_ini);
$this->db->where($array);