Welcome Guest, Not a member yet? Register   Sign In
(Easy) Message if tag not found
#3

[eluser]Sumon[/eluser]
Your model code is....
Code:
function tag_count() {

$this->db->where('tag', $this->uri->segment(3) );
$results = $this->db->query('SELECT * FROM blogs ');
Return  $results;

}

Change it by

Code:
function tag_count() {

$this->db->from('blogs');
$Condition=array('tag'=>$this->uri->segment(3));
$this->db->where($Condition);
return $this->db->get();

}
Hope it will help you.


Messages In This Thread
(Easy) Message if tag not found - by El Forum - 07-12-2008, 09:00 AM
(Easy) Message if tag not found - by El Forum - 07-14-2008, 04:07 AM
(Easy) Message if tag not found - by El Forum - 07-14-2008, 05:08 AM
(Easy) Message if tag not found - by El Forum - 07-14-2008, 06:02 PM



Theme © iAndrew 2016 - Forum software by © MyBB