天,
我不熟悉 MySQL,这可能是一个简单的问题!
我正在尝试修改 Joomla 插件,并且正在使用适用于类似功能的代码:
$q="SELECT `".$naming."` AS naming FROM `#__users` WHERE `id`='".$jomsocial_event->creator."' ";
$db->setQuery($q);
$eventcreatorname = $db->loadResult();
$eventcreator = '<a href=\"'.CRoute::_('index.php?option=com_community&view=profile&userid='.$jomsocial_event->creator).'\">'.addslashes($eventcreatorname).'</a>';
我需要做的是id
在表中查找字段community_groups
并返回匹配的字段name
。我所拥有的是(注意$jomsocial_event->contentid
包含组 ID):
$q="SELECT `".$naming."` AS naming FROM `#__community_groups` WHERE `id`='".$jomsocial_event->contentid."' ";
$db->setQuery($q);
$eventgroupname = $db->loadResult();
$eventgroup = '<a href=\"'.CRoute::_('index.php?option=com_community&view=groups&task=viewgroup&groupid='.$jomsocial_event->contentid).'\">'.addslashes($eventcreatorname).'</a>';
由于查询错误,它不返回任何内容;我的用法应该是什么?