謝謝你的任何幫助。 如何向同一行添加另一個條件。我有2個要求,我需要加入又名我有這個加入兩個PHP請求到一個
if ([email protected]$_REQUEST['urEmail']) { $errorsAndAlerts .= "No email entered!<br/>\n"; }
但我還需要它添加到它
if ([email protected]$_REQUEST['g-recaptcha-response'])
我已經試過
if ([email protected]$_REQUEST['urEmail']) || ([email protected]$_REQUEST['g-recaptcha-response']) { $errorsAndAlerts .= "No email entered!<br/>\n"; }
這
if ([email protected]$_REQUEST['urEmail']) && ([email protected]$_REQUEST['g-recaptcha-response']) { $errorsAndAlerts .= "No email entered!<br/>\n"; }
但它工作得更加輕鬆。 我很感激任何幫助。
謝謝
驗證您是否正確發送請求之前。 – KubiRoazhon
不要使用'@'來壓制警告,修復腳本以避免錯誤發生。使用'empty()'函數確保它被填充。您可以將它與'trim()'結合使用來刪除空格,如果是和email,則使用'filter_var($ email,FILTER_VALIDATE_EMAIL)'來驗證它是否是有效的電子郵件模式。 – Rasclatt
您嘗試工作的主要原因是它們都包含語法錯誤,這些錯誤會阻止您的腳本執行。在開發應用程序時,您需要[啓用錯誤報告](https://stackoverflow.com/questions/1053424/how-do-i-get-php-errors-to-display),以便您可以瞭解這些情況。 –