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