|
|
Home Manual 11. API Reference [REVIEW] database->loadObjectList |
| [REVIEW] database->loadObjectList |
|
|
|
|
Last reviewed: Not reviewed database->loadObjectListReturns an array of database objects using the current SQL query. Returns false if the query fails (prior to Joomla 1.1 returned null). Syntaxarray loadObjectList ( [ string $key ] )
ExamplesExample: function getCategories() { global $database; $sql = 'SELECT * FROM #__categories'; $database->setQuery( $sql ); $rows = $database->loadObjectList(); foreach ( $rows as $row ) { echo "$row->title: $row->description\n"; } } getCategories(); might produce: Latest: The latest news from the Joomla Team Joomla: A selection of links that are all related to the Joomla project. Newsflash: Contacts: Contact Details for this web site Please report any errors on this page to the Developer Documentation Forum. |
|
| Last Updated ( Sunday, 24 December 2006 ) |
| < Prev | Next > |
|---|





