Welcome Guest, Not a member yet? Register   Sign In
priority problem
#1

[eluser]Bigil Michael[/eluser]
now iam listing around 100 news

i want to set priority for each news like 1,2,3.........

i didn't have any idea how to do that...

can any one know how to solve this problem????

urgent

thanks in advance.....
#2

[eluser]InsiteFX[/eluser]
Add a field to your database table called priority!

Then in your database query you check that field for your priority level.

Something like this:
Code:
public function get_priority($priority)
{
    $this->db->where('priority', $priority);
    $query = $this->db->get($table_name);

    // do checking here!

    return $this->query->result();
}

InsiteFX




Theme © iAndrew 2016 - Forum software by © MyBB