PHP 中的 fwrite 出现问题 - 我的代码出了什么问题?
我收到错误“*警告:fwrite():提供的参数不是第 6 行 /home/dir/public_html/admin/edit.php 中的有效流资源*”
我正在尝试使用以下命令写入文件一种形式。我还想知道如何将当前表单内容放入文本区域。
<?php
$ourFileName = $_GET['page'];
$ourFileHandle = fopen($ourFileName, 'w') or die("can't open file");
$stringData = $_POST['stuff'];
fwrite($fh, $stringData);
fclose($ourFileHandle);
?>
<form action="edit.php?page=index.txt" method="post">
<textarea name="stuff" rows="10" cols="50" wrap="virtual" maxlength="300"></textarea>
<input name="submit" type="submit" value="Submit">
</form>
I'm getting the error "*Warning: fwrite(): supplied argument is not a valid stream resource in /home/dir/public_html/admin/edit.php on line 6*"
I'm trying to write to a file with a form. I also was wondering how to put the current form contents into the text area.
<?php
$ourFileName = $_GET['page'];
$ourFileHandle = fopen($ourFileName, 'w') or die("can't open file");
$stringData = $_POST['stuff'];
fwrite($fh, $stringData);
fclose($ourFileHandle);
?>
<form action="edit.php?page=index.txt" method="post">
<textarea name="stuff" rows="10" cols="50" wrap="virtual" maxlength="300"></textarea>
<input name="submit" type="submit" value="Submit">
</form>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
fwrite()
中使用文件处理程序变量:Use your file handler variable in
fwrite()
: