Global $Redirect;
if (empty($somevalue)) {
/// Redirect to another page
$Redirect = "otherpage.php";
} else {
// normal part...
}
上述這個功能,我記得以前寫過,可以用的。不知為何,今天寫卻不行!?!???
試了半天,只好試另個辦法:
if (empty($somevalue)) {
/// Redirect to another page
header('Location: /otherpage.php');
exit();
} else {
// normal part...
}
第二個這樣改就可以了。
改日有空再來研究為何第一個不行?!
在此做個紀錄。
沒有留言:
張貼留言