如果使用PHP如何自动更改页面?

时间:2012-04-18 11:31:53

标签: php mysql database url hyperlink

......满足if语句的条件?

如果满足某些条件,我有一些代码可以将数据添加到数据库中,在添加数据后我希望页面重定向到另一个页面?我怎么能这样做?

4 个答案:

答案 0 :(得分:4)

使用if-else条件。您可以使用PHP的header()。

if(/* Your conditions */){
// redirect if fulfilled
header("Location:nxtpage.php");
}else{
//some another operation you want
}

答案 1 :(得分:2)

你应该使用标题php函数

<?php 

  //some conditions

  header("Location: http://www.example.com/");

?>

答案 2 :(得分:2)

试试这段代码

 $query ="insert into test values (1,'test')";

if(mysql_query($query) == true)
{
  header('location:index.php');
  exit();
}
else
{
  echo " insert failed";
}

答案 3 :(得分:0)

尝试PHP Header

标题('位置:http://www.example.com/');