PHP 中的 fwrite 出现问题 - 我的代码出了什么问题?

发布于 2024-10-07 18:27:51 字数 589 浏览 5 评论 0原文

我收到错误“*警告: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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独守阴晴ぅ圆缺 2024-10-14 18:27:51

fwrite() 中使用文件处理程序变量:

fwrite($ourFileHandle, $stringData);

Use your file handler variable in fwrite():

fwrite($ourFileHandle, $stringData);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文