我寫這些代碼用於在我的項目中搜索功能。 如果用戶輸入正確的郵政編碼,它會顯示一個表單,如果郵政編碼錯誤,它會顯示一些我在其他條件下編寫的郵件。 但是默認情況下,當用戶第一次進入頁面時顯示else消息。 如果用戶輸入錯誤的郵政編碼,我想顯示(我在其他條件下寫入的郵件)消息?任何建議。系統默認打印其他消息php
<small>Enter your zipcode to book our service</small>
<?php if($this->isAllowedZipcode=="Matched"){?>
<div class="row">
</div>
<?php } ?>
<?php } else
{ ?>
<div class="row">
<div class="col-sm-12 col-xs-12">
<p>Sorry but our services are not available in your area. We are working hard to cover as much area as we can. Thank you for using the system.</p>
<?php } ?>
你的代碼似乎不完整,如果您使用的條件不明確,請重新檢查你的代碼 –
''結束你的'if'。 '<?php} else'繼續__some other'if'__ –