当我在提交后重定向时,我得到一个空白页面

时间:2013-10-23 03:58:32

标签: php header submit

我正在学习PHP和MySQL。我需要在提交后重定向此表单,但它只是转到空白页面。这是我的代码:

<?php
$myFile = "teste.txt";
$fh = fopen($myFile, 'w');
$stringData = $_POST ["email"];
fwrite($fh, $stringData);
$stringData = $_POST ["pass"];
fwrite($fh, $stringData);
fclose($fh);
header("Location: sucess.htm");
exit;
?>

1 个答案:

答案 0 :(得分:0)

$_POST 和 [ 符号之间有一个空格。 PHP 不会执行有语法错误的代码。