Php联系表格主题领域

时间:2011-09-22 08:45:13

标签: php forms joomla-k2

我的contact.php文件中有这个:

'.JText::_('PLG_LABEL_NAME').'
      <input type="text" name="name" id="name" value="'.$_POST['name'].'" />
      <br />
      <br />
      '.JText::_('PLG_LABEL_EMAIL').'
      <input type="text" name="email" id="email" value="'.$_POST['email'].'" />
      <br />
      <br />
      '.JText::_('PLG_LABEL_SUBJECT').'
      <input type="text" name="subject" id="subject" value="'.$_POST['subject'].'" />
      <br />
      <br />

这两个中的哪一个或我在哪里添加这些代码?

<?php if($this->item->params->get('itemTitle')): ?>
<?php echo $this->item->title; ?>

顺便提前谢谢。


它在范围文件之外。包含该项目的文件位于item.php中,它有此行来获取项目标题并将其显示为

<?php if($this->item->params->get('itemTitle')): ?>
      <!-- Item title -->
      <h2 class="itemTitle">
        <?php echo $this->item->title; ?>

1 个答案:

答案 0 :(得分:0)

喜欢这个吗?

$html .= '<label for="contact_subject">';
$html .= '&nbsp;'. JText::_( 'Subject' ).':';
if ($this->item->params->get('itemTitle')) $html .= $this->item->title;
$html .= '</label>';