我正在對我的網站上的帖子系統發表評論,結果是最新的評論被新的評論取代。我希望所有的評論留下來,而不僅僅是一個。這個PHP評論系統不工作?
<?php
$placement=290;
$comment=fgets($file);
while ($comment!="") {
$placement=$placement+5;
echo'<div style="left:10px; position:relative; top:'.$placement.'px; border:solid; right:10px; height:75px;">';
$comment=fgets($file);
echo "<p>".$comment."</p>";
echo'</div>';
}
$placement2=$placement+5;
if (isset($_SESSION['Username'])) {
echo'<form method="POST" action="">';
echo'<input type="text" columns="10" maxlength="500" style="position:relative; left:50px; width:80%; height:50px; resize:none; top:'.$placement2.'px;" name="comment" placeholder="Leave a comment! (max 500 characters)" >';
}
if (isset($_POST['comment']) or isset($_POST['submit'])) {
if (!empty($_POST['comment'])) {
$file=fopen('Questions/question'.$_GET['qid'],"r");
$name=fgets($file);
$info=fgets($file);
$user=fgets($file);
$n=fgets($file);
$number=1;
while($number<$n) {
$comment=fgets($file);
define("comment".$number,$comment);
echo $number;
$number=$number+1;
}
define("comment".$number,$_POST['comment']);
echo trim(constant("comment1"));
$file=fopen('Questions/question'.$_GET['qid'],"w");
fwrite($file,$name);
fwrite($file,$info);
fwrite($file,$user);
fwrite($file,$n);
$number2=1;
while($number2<$number) {
$number2=$number2+1;
fwrite($file, constant("comment".$number2)."\n");
echo constant("comment".$number2)."\n";
}
}
}
?>
我知道什麼是錯的,我只是不知道是什麼。另外,沒有錯誤。
如果您爲此使用了數據庫,那麼您可以更輕鬆一點。 – jeroen
隨着我使用的免費主機,我無法使用SQL。 –
一些合理的代碼縮進會使閱讀更重要,而且更重要的是調試這些代碼更容易 – RiggsFolly