This is my code in model..
function installed(){
$query_str = "SHOW TABLES";
$query = $this->db->query($query_str);
if($query->num_rows() == 0){
redirect('install');
}
}
So many questions on StackOverflow but I haven't found any answer related to scenario. So what I am doing wrong?