0

我正在学习 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;
?>
4

1 回答 1

0

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

于 2021-06-26T09:30:51.753 回答