Extracting data from a result() array of objects. |
[eluser]behdesign[/eluser]
In the user guide and in various other sources, I've only ever seen foreach() loops being used to display a mysql result(). This works fine if there's only one object or row, but I want to create a page that deals with dozens of records collated from a mysql query. I know that the result() is an array of objects, but how do I structure my view to express the objects in the array? I assume there's some form of loop that I can use, but various iterations of while() and nested foreach() have failed me. Can anyone help? Thanks!
[eluser]jedd[/eluser]
If you're more comfortable with arrays, just use the [url="/user_guide/database/results.html"]result_array()[/url] function to extract your data. If you're having trouble with converting the SQL output into something displayable - then you'll have to describe the nature of the data.
[eluser]intractve[/eluser]
There are two options in CI for multiple rows, result() and result_array() take the following as the case result id value allowed 1 foo true 2 bar false 3 tasty true in your controller the result set is got by Code: $query = $this->db->get('table'); Now your view has the variable $rows Then in your view you can do Code: <table> Will print out a table with the above values. A guide for the alternate syntax used above is here PHP Alternate Syntax Hope this helps. |
Welcome Guest, Not a member yet? Register Sign In |