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.
エイリアスで選択した記事のイントロテキストを出力しようとしています
<?php $db =& JFactory::getDBO(); $query = "SELECT introtext FROM jmo_content WHERE alias=branchfr"; $db->setQuery($query); $text= $db->loadResult(); ?>
正常ですか?joomla 2.5で変更されますか?
SQLステートメントに引用符がありません:
$query = "SELECT introtext FROM jmo_content WHERE alias = 'branchfr'";