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