新手求指教
程序员文章站
2024-02-03 08:26:22
...
a1
"
a2
header('Content-Type:text/html;charset=gbk');
if (!isset($_POST['send'])||$_POST['send']!='提交'){
header('Location:a1.php');
exit;
}
?>
为什么他不会跳转呢?
"
a2
header('Content-Type:text/html;charset=gbk');
if (!isset($_POST['send'])||$_POST['send']!='提交'){
header('Location:a1.php');
exit;
}
?>
为什么他不会跳转呢?
回复讨论(解决方案)
为什么会跳转呢?
你有
那么只要是从 a1 提交过来的,就一定有 $_POST['send']
"
把上边这段删掉,就可以了