Welcome Guest, Not a member yet? Register   Sign In
Displaying a table of results
#4

[eluser]mdcode[/eluser]
Thanks for the answers guys, I have been trying joins to no avail and if I use this code:
Code:
function get_last_ten_entries()
{
$this->db->select('projects.id, projects.customer, projects.date_required, projects.job_status, customers.id, customers.name');
$this->db->from('projects, customers');
$this->db->join('customers', 'projects.customer = customers.id', 'inner');
$this->db->order_by('projects.id', 'DESC');
$this->db->limit(10);
        
$query = $this->db->get();
}

I get the error:
Code:
A PHP Error was encountered
Severity: Warning
Message: Invalid argument supplied for foreach()
Filename: pages/projects_reports.php
Line Number: 35

The foreach code on my view is like this (which could be wrong, though work when only the customer.id is used):
Code:
foreach($query as $row){
echo "<tr>";
echo "<td>". $row->id ."</td>";
echo "<td>". $row->name ."</td>";
echo "<td>". $row->date_required ."</td>";
echo "<td>". $row->job_status ."</td>";
echo "</tr>";
}


Messages In This Thread
Displaying a table of results - by El Forum - 04-06-2009, 07:33 PM
Displaying a table of results - by El Forum - 04-06-2009, 08:27 PM
Displaying a table of results - by El Forum - 04-06-2009, 08:53 PM
Displaying a table of results - by El Forum - 04-06-2009, 09:00 PM
Displaying a table of results - by El Forum - 04-06-2009, 09:01 PM
Displaying a table of results - by El Forum - 04-06-2009, 09:07 PM
Displaying a table of results - by El Forum - 04-06-2009, 09:09 PM
Displaying a table of results - by El Forum - 04-06-2009, 09:12 PM
Displaying a table of results - by El Forum - 04-06-2009, 09:17 PM
Displaying a table of results - by El Forum - 04-06-2009, 09:44 PM
Displaying a table of results - by El Forum - 04-06-2009, 09:51 PM
Displaying a table of results - by El Forum - 04-06-2009, 09:55 PM
Displaying a table of results - by El Forum - 04-06-2009, 10:04 PM
Displaying a table of results - by El Forum - 04-06-2009, 10:06 PM
Displaying a table of results - by El Forum - 04-06-2009, 10:12 PM
Displaying a table of results - by El Forum - 04-06-2009, 10:18 PM
Displaying a table of results - by El Forum - 04-06-2009, 10:27 PM
Displaying a table of results - by El Forum - 04-06-2009, 10:28 PM
Displaying a table of results - by El Forum - 04-06-2009, 10:34 PM
Displaying a table of results - by El Forum - 04-06-2009, 10:42 PM
Displaying a table of results - by El Forum - 04-06-2009, 10:45 PM
Displaying a table of results - by El Forum - 04-07-2009, 12:14 AM
Displaying a table of results - by El Forum - 04-07-2009, 12:26 AM
Displaying a table of results - by El Forum - 04-07-2009, 05:07 AM
Displaying a table of results - by El Forum - 04-07-2009, 06:09 PM
Displaying a table of results - by El Forum - 04-07-2009, 06:31 PM
Displaying a table of results - by El Forum - 04-07-2009, 06:56 PM
Displaying a table of results - by El Forum - 04-07-2009, 09:34 PM



Theme © iAndrew 2016 - Forum software by © MyBB