我正在爲我的網站做一個聯繫頁面,文本是葡萄牙語,因爲我是巴西人,但是我的問題如下:當我發送參數時它總是進入第一種狀態,我無法弄清楚發生了什麼問題。我需要這個if/else語句的幫助
當參數爲?resp=true
時,爲什麼會遇到第一個條件? ,這是我目前遇到的問題代碼:
<?php if (isset($_GET["resp"]) && $_GET["resp"] == false) { ?>
<div class="row row-centered" style="padding-top: 10px;">
<div class="alert alert-success">
<button type='button' class='close' data-dismiss='alert' aria-hidden='true'>×</button>
<strong style="text-align: center;">Sua mensagem foi enviada com sucesso.</strong>
</div>
</div>
<?php } elseif(isset($_GET["resp"]) && $_GET["resp"] == true) { ?>
<div class="row row-centered" style="padding-top: 10px;">
<div class='alert alert-danger'>
<button type='button' class='close' data-dismiss='alert' aria-hidden='true'>×</button>
<strong style="text-align: center;">Desculpe, parece que o servidor de email não esta respondendo. Por favor, tente novamente mais tarde!</strong>
</div>
</div>
<?php } ?>
非常感謝!我忘了字符串:D –