{"id":117,"date":"2006-07-05T09:05:34","date_gmt":"2006-07-05T01:05:34","guid":{"rendered":"http:\/\/kenshinjeff.jp\/wordpress\/2006\/07\/05\/joomla-tutorial-basic-tips\/"},"modified":"2006-07-05T09:05:34","modified_gmt":"2006-07-05T01:05:34","slug":"joomla-tutorial-basic-tips","status":"publish","type":"post","link":"https:\/\/kenshinjeff.jp\/2006\/07\/05\/joomla-tutorial-basic-tips\/","title":{"rendered":"joomla tutorial basic tips"},"content":{"rendered":"

Instead of diving straight into the component \/ module codes, here’s a rundown on what you need to know for coding it.<\/p>\n

Note: If you do not know php and mysql at all, I would suggest you just employ someone to code it for you before you break anything in Joomla. It is not exactly that easy to wade through code someone else wrote if you don’t have prior experience.<\/p>\n

All database calls can be used like this, in any page that you have coded, be it a component or module or plugin.
\n
\nglobal $database;
\n$database->setQuery( \"SELECT * FROM #__users\" );
\n$results = $databage->loadObjectList();
\nforeach ( $results as $result ) {
\necho $result->username;
\n}<\/code><\/p>\n