我正在学习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;
?>
答案 0 :(得分:0)
$_POST 和 [ 符号之间有一个空格。 PHP 不会执行有语法错误的代码。