It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center。
已关闭8年。
我试图显示存储在phpmyadmin中的注释,并将其放置在对话框中。我无法弄清楚我的代码有什么问题。它不会显示。
非常感谢
以及您的意思是:
您的代码充满语法错误。
尝试将$ outputlist更改为:
也许可以用,但是没有人向您保证,因为我们看不到其余的代码...
我想这是行不通的,因为在开始时,您给$ outputList空值,并且在尝试获取新值时出现语法错误。
编辑:
我现在看到了,您在echo中也有语法错误,我修复了所看到的,我测试了此方法并进行了工作:
已关闭8年。
我试图显示存储在phpmyadmin中的注释,并将其放置在对话框中。我无法弄清楚我的代码有什么问题。它不会显示。
enter code here
$outputList = '';
echo "<div><form method=POST>";
while($row = mysql_fetch_array($sql2)){
$outputList="";
$id = $row["guestID"];
$name = $row["name"];
$age = $row["age"];
$date = $row["date"];
$email = $row["email"];
$comment = $row["comment"];
$outputList .=$name . ',' . $age . ','.$date.'<br>'.$email.'<br>'.$comment.…
echo "<input type=text value=$outputList class=commentbox>";
echo "<a href=\"modify.php?id=".$row['guestID']."… ";
echo "<a href=\"delete.php?id=".$row['guestID']."…
}echo "</form></div>"; // close while loop
?>
非常感谢
最佳答案
问题在这里:
$outputList = '';
以及您的意思是:
$outputList .=$name . ',' . $age . ','.$date.'<br>'.$email.'<br>'.$comment.…
您的代码充满语法错误。
尝试将$ outputlist更改为:
$outputList = $name . ',' . $age . ','.$date.'<br>'.$email.'<br>'.$comment. '...';
也许可以用,但是没有人向您保证,因为我们看不到其余的代码...
我想这是行不通的,因为在开始时,您给$ outputList空值,并且在尝试获取新值时出现语法错误。
编辑:
我现在看到了,您在echo中也有语法错误,我修复了所看到的,我测试了此方法并进行了工作:
$outputList = $name . ',' . $age . ','.$date.'<br>'.$email.'<br>'.$comment. '...';
echo "<input type=text value=$outputList class=commentbox>";
echo "<a href=\"modify.php?id=".$row['guestID']."… ";
echo "<a href=\"delete.php?id=".$row['guestID']."… ";
} // close while loop
echo "</form></div>";
10-07 21:07