重定向PHP页面

时间:2011-08-10 09:03:02

标签: php redirect

当我点击“保存”按钮并在点击下一步按钮时将我的页面重定向到next.php时,我想将页面重定向到save.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");
}
?>

2 个答案:

答案 0 :(得分:6)

删除if语句上的分号

<强> o_crt_ext.php

<?php
if(isset($_POST['save']))
{
  header("location:save.php");
}
if(isset($_POST['next']))
{
  header("location:next.php");
}
?>

答案 1 :(得分:1)

如果用户点击下一步按钮,是否要发送任何信息?不是:你走了。

 <form name="crtext" method="post" action="o_crt_ext.php" enctype="multipart/form-data">

 <input type="submit" name="save" value="save" />
 <input type="button" onclick="window.location.href='next.php'" value="next" />
 </form>