2011-09-22 115 views
0

我有這對我的contact.php文件: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; ?> 

回答

0

喜歡這個?

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

哦對不起,我發佈了錯誤的HTML語法我有這個在我的contactform.php 如果(!$ _ POST [ 「主題」]){$誤差1 = JText :: _( 'PLG_ERROR_NO_SUBJECT') 「
」;} and '.JText :: _('PLG_LABEL_SUBJECT')。' \t \t \t \t
jmc

+0

對不起,我不太跟隨,你可以用正確的代碼段中的相關代碼編輯問題嗎? – DaveRandom

+0

我編輯了我的第一篇文章。再次感謝。 – jmc