Php 联系表主题字段
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样?
Like this?