Welcome Guest, Not a member yet? Register   Sign In
What is the best way for data in user section
#2

[eluser]steelaz[/eluser]
Everything sounds correct up to the last part, you only need to add <i>where</i> statement to your database query. Your code in the model would look something like this:

Code:
public function get_articles_by_user($user_id)
{
    $this->db->where('user_id', $user_id);
    $query = $this->db->get('articles');
    
    return $query->result();
}

And in controller, assuming you have logged in user's id in the session:

Code:
$articles = $this->articles_model->get_articles_by_user($this->session->userdata('user_id'));


Messages In This Thread
What is the best way for data in user section - by El Forum - 03-06-2011, 05:10 AM
What is the best way for data in user section - by El Forum - 03-06-2011, 05:20 AM
What is the best way for data in user section - by El Forum - 03-06-2011, 11:59 AM
What is the best way for data in user section - by El Forum - 03-06-2011, 12:29 PM
What is the best way for data in user section - by El Forum - 03-06-2011, 02:07 PM
What is the best way for data in user section - by El Forum - 03-07-2011, 01:24 AM
What is the best way for data in user section - by El Forum - 03-07-2011, 02:25 AM
What is the best way for data in user section - by El Forum - 03-07-2011, 02:34 AM
What is the best way for data in user section - by El Forum - 03-07-2011, 02:36 AM
What is the best way for data in user section - by El Forum - 03-07-2011, 02:45 AM
What is the best way for data in user section - by El Forum - 03-07-2011, 02:48 AM
What is the best way for data in user section - by El Forum - 03-07-2011, 02:51 AM
What is the best way for data in user section - by El Forum - 03-07-2011, 02:53 AM
What is the best way for data in user section - by El Forum - 03-07-2011, 02:58 AM
What is the best way for data in user section - by El Forum - 03-07-2011, 03:01 AM
What is the best way for data in user section - by El Forum - 03-07-2011, 03:01 AM
What is the best way for data in user section - by El Forum - 03-07-2011, 03:04 AM
What is the best way for data in user section - by El Forum - 03-07-2011, 03:06 AM



Theme © iAndrew 2016 - Forum software by © MyBB