Welcome Guest, Not a member yet? Register   Sign In
What's wrong with this code? =/
#3

[eluser]emily12[/eluser]
look at the bottom of the previous post (bold text). That's the database structure for the tables in question. The column names don't really matter since they can be anything. I just want to know the logic behind it lol

Here's kinda where I want to be going with it:
Code:
function get_allcomments($cmlimit) {
            $this->db->select('*');
            $this->db->from ('entertainment_comments AS p, articles_comment AS g');
            $this->db->join('users AS b', 'p.cme_articles_author = b.user_id', 'left');
            $this->db->join('entertainment AS c', 'p.cme_articles_article = c.earticleid', 'left');
            $this->db->join('articles AS k' 'g.cm_articles_article = k.articleid', 'left');
            $this->db->order_by('p.cme_articles_date, g.cm_articles_date' 'desc');
            $this->db->limit($cmlimit);
            return $this->db->get();
}

Obviously this won't work but it's where I want to go with it.


Messages In This Thread
What's wrong with this code? =/ - by El Forum - 06-06-2012, 12:25 PM
What's wrong with this code? =/ - by El Forum - 06-06-2012, 12:44 PM
What's wrong with this code? =/ - by El Forum - 06-06-2012, 01:26 PM
What's wrong with this code? =/ - by El Forum - 06-06-2012, 01:32 PM
What's wrong with this code? =/ - by El Forum - 06-06-2012, 01:34 PM
What's wrong with this code? =/ - by El Forum - 06-06-2012, 01:44 PM
What's wrong with this code? =/ - by El Forum - 06-06-2012, 01:46 PM
What's wrong with this code? =/ - by El Forum - 06-06-2012, 01:51 PM
What's wrong with this code? =/ - by El Forum - 06-06-2012, 02:08 PM
What's wrong with this code? =/ - by El Forum - 06-06-2012, 02:50 PM
What's wrong with this code? =/ - by El Forum - 06-06-2012, 04:16 PM
What's wrong with this code? =/ - by El Forum - 06-06-2012, 04:22 PM
What's wrong with this code? =/ - by El Forum - 06-06-2012, 05:02 PM
What's wrong with this code? =/ - by El Forum - 06-06-2012, 05:45 PM



Theme © iAndrew 2016 - Forum software by © MyBB