在这里,我在使用 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");
}
?>
但它正在重定向并且 url 没有改变它正在显示就像http:localhost/sample/addForm.php#/sample/insert.php
我实际上想要它一样http:localhost/sample/sample.php
或http:localhost/sample/index.php