Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Joomla 2.5 を使用しています。
新しいデータベース接続を作成する必要がないように、カスタム Jumi モジュールで Joomla DB インスタンスを使用したいと考えています。方法はありますか?
これがあなたが探しているものだと思います:
$db =& JFactory::getDBO(); //code for database connection $query = 'SELECT * FROM #__tablename'; //selects from table $db->setQuery($query);