标头位置不起作用PHP

时间:2015-10-05 10:22:04

标签: php header location

使用ob_start();

时,我的标题位置无效

当我尝试登录时,插入当前数据后会转到其他页面,现在错误是我们插入正确的东西,每件事情都正确发生但是没有进入下一页

插入正在进行,但标头位置无法正常工作

ob_start();
$insert=$db->fireQuery("insert into saveresu (`id`,`employee_id`,`date`,`email`,`emp_id`) values('','$wed','$date','$email','$emp_id')");
 if($insert) {
  header("location:profile.php");
  }

1 个答案:

答案 0 :(得分:0)

试试这个,但首先检查天气是否在这里?

if($insert) { 
header("location:profile.php");
die; 
}