How to return a associated array from an single record in the table using Joomla! 2.5 and 1.5 API

H

How Can We Help?

How to return a associated array from an single record in the table using Joomla! 2.5 and 1.5 API

Use the loadAssoc() method as in example below

$db = $this->getDbo();
$db->getQuery(true);
$db->setQuery("SELECT count(id) as count FROM #__database_table");
$count = $db->loadAssoc();
echo $count['count'];

About the author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

About Author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

Follow Me