4

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

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

4

4 回答 4

5

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

if(/* Your conditions */){
// redirect if fulfilled
header("Location:nxtpage.php");
}else{
//some another operation you want
}
于 2012-04-18T11:41:57.000 回答
3

你应该使用 header php 函数

<?php 

  //some conditions

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

?>
于 2012-04-18T11:35:33.137 回答
2

试试这个代码

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

if(mysql_query($query) == true)
{
  header('location:index.php');
  exit();
}
else
{
  echo " insert failed";
}
于 2012-04-18T11:41:08.293 回答
1

尝试PHP 标头

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

于 2012-04-18T11:33:58.117 回答