我正在使用 XAMPP、phpmyadmin 甚至在多次更正之后,在输出中它只显示更新的记录。数据没有以某种方式插入。
<?php
$name=$_POST['comment'];
$link=mysql_connect('localhost', 'root','' );
mysql_select_db('comments',$link);
mysql_query("insert into comment values('$name'");
echo '<script type="text/javascript">
<!-- window.location = "display1.php" --> </script>';
?>
显示1.php
<?php
$link=mysql_connect('localhost', 'root','' );
mysql_select_db('comments',$link);
echo "Updated records:<br>";
$result=mysql_query("select * from comment");
while($row=mysql_fetch_array($result)) {
$tempname=$row['commenting']; echo $tempname."<br>";
}
?>