gpt4 book ai didi

php - 评论系统无法通过 php 运行

转载 作者:行者123 更新时间:2023-11-28 04:40:15 25 4
gpt4 key购买 nike

我在网上看到的关于留言簿类型情况的评论发布教程对很多其他人来说都很好,但对我来说我一直在用

" . $name. ":
" . $content . "
"); fclose ($handle); } ?>

出现在评论框上方。在 php 中完成所有操作后,它也不会发布任何内容。这是代码:

<?php

if($_POST){
$name = $_POST ['name'];
$content = $_POST ['commentcontent'];
$handle = fopen("JackPackNetwork.html","a");
fwrite ($handle, "<b>" . $name. "</b>:<br/>" . $content . "<br/>");
fclose ($handle);
}
?>

<html>
<head>
</head>
<body>
<form action="" method= "POST">

Comments: <textarea rows= "10" cols= "30" name= "commentContent"></textarea> <br/>
Name: <input type= "text" name = "name"> <br/>
<input type= "submit" value = "Post!"> <br/>
</form>
<?php include "JackPackNetwork.html"; ?>
</body>
</html>

具体来说,我想链接到 JackPackNetwork.html 并更新评论,让某人也能够在上面加上自己的名字。感谢您的时间和考虑。

最佳答案

您的代码应如下所示:

<?php

if($_POST){
$name = $_POST ['name'];
$content = $_POST ['commentContent'];
$handle = fopen("JackPackNetwork.html","a");
fwrite ($handle, "<b>" . $name. "</b>:<br/>" . $content . "<br/>");
fclose ($handle);



}

?>


<html>
<head>
</head>
<body>
<form action="" method= "POST">

Comments: <textarea rows= "10" cols= "30" name= "commentContent"></textarea> <br/>
Name: <input type= "text" name = "name"> <br/>
<input type= "submit" value = "Post!"> <br/>
</form>
<?php require_once("JackPackNetwork.html"); ?>
</body>
</html>

错误

  1. 数组索引区分大小写,因此应该正确完成 $content post 请求提取。

建议

  1. 使用 require_once() 而不是 include()。

关于php - 评论系统无法通过 php 运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41236763/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com