通过PHP使用URL重定向Jquery Mobile Page?

时间:2013-02-12 10:47:14

标签: php jquery-mobile

这里我有一个问题,用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.phphttp:localhost/sample/index.php

1 个答案:

答案 0 :(得分:2)

尝试,

if($name != '')
{
  header("Location: /sample/sample.php");
}
else
{
  header("Location: /sample/index.php");
}