投稿の結果に応じて、さまざまな条件に従って単一の PHP ファイルをさまざまなページにリダイレクトする場合..
if(condition 1) {
header("Location: page1.php");
exit;
}
else if(condition 2) {
header("Location: page2.php");
exit;
}
else {
header("Location: page3.php");
exit;
}
投稿の結果に応じて、さまざまな条件に従って単一の PHP ファイルをさまざまなページにリダイレクトする場合..
if(condition 1) {
header("Location: page1.php");
exit;
}
else if(condition 2) {
header("Location: page2.php");
exit;
}
else {
header("Location: page3.php");
exit;
}