Php 联系表主题字段

发布于 2024-12-05 22:23:57 字数 1010 浏览 1 评论 0原文

我的 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; ?>

I have this on my contact.php file:

'.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 />

Which of these two or where do i add these codes?

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

Thanks in advance by the way.


It's outside of the scope file. The file containing the item is in item.php and it has this line to get the item title and display it as

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼藏柔 2024-12-12 22:23:57

像这样?

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

Like this?

$html .= '<label for="contact_subject">';
$html .= ' '. JText::_( 'Subject' ).':';
if ($this->item->params->get('itemTitle')) $html .= $this->item->title;
$html .= '</label>';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文