I am working on a website in the php Codeigniter framework, and am having problems with joining tables together.
The two tables are meals and restaurants, simply with the versions
meals: id, restaurant_id, price, etc.
restaurants: id, name, location, etc.
To make the query I use the following code:
$this->db->join('restaurants', 'restaurants.id = meals.restaurant_id');
$query = $this->db->get('meals');
which returns the same result as running this:
$query = $this->db->query('SELECT * FROM meals INNER JOIN restaurants ON restaurants.id = meals.restaurant_id');
The problem is that when I access the result in the form of a php array or and object (as supplied by codeigniter DB class), there is only one id returned, the restaurant id, and I need the meal id. How can I get it to spit out the meal id?