我有一个问题,我正在安装组件,我想在后端添加一个新字段,我想在后端添加一个新字段,该字段是我想添加的下拉列表,我想添加在下拉列表中从数据库中获取数据
给我任何建议以解决我的问题,你告诉我在哪里写组件中的 dat 查询告诉我特定的文件名我有代码,我添加我的代码如下
试图在第84行的C:\wamp\www\Joomla\administrator\components\com_home_service\views\serviceitem\tmpl\edit.php中获取非对象的属性
<form action="<?php echo JRoute::_('index.php?option=com_home_service&layout=edit&id=' . (int) $this->item->id); ?>" method="post" enctype="multipart/form-data" name="adminForm" id="serviceitem-form" class="form-validate">
<div class="width-60 fltlft">
<fieldset class="adminform">
<legend><?php echo JText::_('COM_HOME_SERVICE_LEGEND_SERVICEITEM'); ?></legend>
<ul class="adminformlist">
<li><?php echo $this->form->getLabel('id'); ?>
<?php echo $this->form->getInput('id'); ?></li>
<li><?php echo $this->form->getLabel('image'); ?>
<?php echo $this->form->getInput('image'); ?></li>
<li><?php echo $this->form->getLabel('image_name'); ?>
<?php echo $this->form->getInput('image_name'); ?></li>
<?php
//defined('_JEXEC') or die('Restricted access');
$db = JFactory::getDBO();
$query=$db->getQuery (true);
$query->SELECT ('*');
$query->from('#__content');
$db->setQuery( $query);
$results = $db->loadObjectList();?>
<li><?php echo $this->form->getLabel('image_name'); ?>
<select>
<option value="<?php echo $result->id; ?>">1</option>
</select></li>
</ul>
</fieldset>
</div>
给我这个问题的线索
我想在下拉列表中获取其他表数据,并告诉我正确的查询..