0
Im使用以下代碼來驗證(很差,我知道)表單的$_POST[]
ed數據。如何將$auth
傳遞到新頁面,以便我可以爲用戶打印? (short of using my-account.php?auth=You Must......)
使用header()從頁面到頁面傳遞變量;
if (!$_POST['supportarea'] || !$_POST['supportbody']) {
$auth = 'You must provide some information if we are ever to help you with your support ticket';
header('Location: ../pages/my-account.php');
}
謝謝。亞歷克斯。
不要使用(!$ _ POST ['foo']),因爲它會產生PHP錯誤。使用(!isset($ _ POST ['foo']))。 – FoneyOp 2011-05-24 16:55:16