这里我有一个问题,用PHP表单重定向URL提交页面正在改变但是URL没有改变.......
以下是代码:
<form method="post" action="insert.php">
<input type="text" id="emp" name="emp" />
<input type="submit" value="submit" />
</form>
<?php
$name =$_POST['name'];
if($name != '')
{
header("Location :sample.php");
}
else
{
header("Location :index.php");
}
?>
但它正在重定向并且网址没有更改它显示为http:localhost/sample/addForm.php#/sample/insert.php
实际上我希望它像http:localhost/sample/sample.php
或http:localhost/sample/index.php
答案 0 :(得分:2)
尝试,
if($name != '')
{
header("Location: /sample/sample.php");
}
else
{
header("Location: /sample/index.php");
}