我一遍又一遍地测试了这个,由于某种原因,代码在我的文件上写了 0 但是当我回显它时,它会写出预期的文本。
这是我的代码:
<?
$author = $_POST["author"];
$email = $_POST["email"];
$comment = $_POST["comment"];
if (isset($author) && isset($email) && isset($comment)) {
$fileWrite = fopen("Archivo/comentarios.txt","a");
$bytes = fwrite($fileWrite,$author + "*" + $email + "*" + $comment + "\n");
fclose($fileWrite);
}
header('Location: http://www.empowernetworkmexico.com.mx/contacto.php');
?>
<html><head></head><body>
<?
echo $author;
echo $email;
echo $comment;
?>
</body></html>
我使用“TEST”作为提交表单上每个参数的文本值进行了测试。