Adding Categories....table join? |
[eluser]Armchair Samurai[/eluser]
Take a look at the User guide - $this->db->select() takes only two parameters, a string and a boolean. In your query, you're passing two strings. If your not comfortable with AR, you can also just write your own query and run it through $this->db->query(). Code: $this->db->select('x.*, y.name AS category'); |
Messages In This Thread |
Adding Categories....table join? - by El Forum - 02-09-2008, 10:06 AM
Adding Categories....table join? - by El Forum - 02-09-2008, 10:28 AM
Adding Categories....table join? - by El Forum - 02-09-2008, 12:08 PM
Adding Categories....table join? - by El Forum - 02-09-2008, 09:58 PM
Adding Categories....table join? - by El Forum - 02-09-2008, 11:04 PM
Adding Categories....table join? - by El Forum - 02-09-2008, 11:32 PM
Adding Categories....table join? - by El Forum - 02-10-2008, 12:31 PM
Adding Categories....table join? - by El Forum - 02-10-2008, 07:17 PM
Adding Categories....table join? - by El Forum - 02-10-2008, 08:04 PM
Adding Categories....table join? - by El Forum - 02-10-2008, 08:15 PM
Adding Categories....table join? - by El Forum - 02-10-2008, 08:30 PM
Adding Categories....table join? - by El Forum - 02-10-2008, 09:39 PM
|