當我單擊下一步按鈕時,單擊保存按鈕並將我的頁面重定向到next.php時,我想將頁面重定向到save.php。重定向PHP頁面
<form name="crtext" method="post" action="o_crt_ext.php" enctype="multipart/form-data">
<input type="submit" name="save" value="save" />
<input type="submit" name="next" value="next" />
</form>
o_crt_ext.php
<?php
if(isset($_POST['save']));
{
header("location:save.php");
}
if(isset($_POST['next']));
{
header("location:next.php");
}
?>
不要忘記在發送位置標題後調用'exit'或者您可能會收到不需要的行爲。 –