PHP内容可以插入到数据库中但是在页面中显示不出来怎么回事?
比如我在三个框里面分别填上9、9、9提交后数据库里面增加了相应的数据但是没有页面里没有显示出来是怎么回事?我这个代码哪里有问题?下面是代码<html><body><for...
比如我在三个框里面分别填上9、9、9 提交后 数据库里面增加了相应的数据 但是没有页面里没有显示出来 是怎么回事?我这个代码哪里有问题?
下面是代码
<html>
<body>
<form action="insert2.php" method="post">
Firstname: <input type="text" name="firstname" />
Lastname: <input type="text" name="lastname" />
Age: <input type="text" name="age" />
<input type="submit" />
</form>
</body>
</html>
<?php
$con = mysql_connect("localhost","root","");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("t1", $con);
$sql="INSERT INTO stu(id, name, num)
VALUES('$_POST[firstname]','$_POST[lastname]','$_POST[age]')";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
echo "<script>alert('发布成功');location.href='cx.php';</script>";
mysql_close($con)
?>
<?php
$con = mysql_connect("localhost","root","");
if (!$con)
{
echo "连接数据库失败";
exit;
}
$sql='use t1';
mysql_query($sql,$con);
$sql='select*from stu';
$rs=mysql_query($sql,$con);
$list=array();
while($row=mysql_fetch_assoc($rs)){
$list[]=$row;
}
?>
<html>
<body>
<table style="border: 1px solid black">
<tr>
<td>学号</td>
<td>姓名</td>
<td>年龄</td>
</tr>
<?php
foreach($list as $v){
echo '<tr>';
echo '<td>'.$v['id'].'</td>';
echo '<td>'.$v['name'],'</td>';
echo '<td>'.$v['num'].'</td>';
echo '<td><a href="1.php?id='.$v['id'].'">编辑</a></td>';
echo '</tr>';
}
?>
</table>
</form>
</body>
</html> 展开
下面是代码
<html>
<body>
<form action="insert2.php" method="post">
Firstname: <input type="text" name="firstname" />
Lastname: <input type="text" name="lastname" />
Age: <input type="text" name="age" />
<input type="submit" />
</form>
</body>
</html>
<?php
$con = mysql_connect("localhost","root","");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("t1", $con);
$sql="INSERT INTO stu(id, name, num)
VALUES('$_POST[firstname]','$_POST[lastname]','$_POST[age]')";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
echo "<script>alert('发布成功');location.href='cx.php';</script>";
mysql_close($con)
?>
<?php
$con = mysql_connect("localhost","root","");
if (!$con)
{
echo "连接数据库失败";
exit;
}
$sql='use t1';
mysql_query($sql,$con);
$sql='select*from stu';
$rs=mysql_query($sql,$con);
$list=array();
while($row=mysql_fetch_assoc($rs)){
$list[]=$row;
}
?>
<html>
<body>
<table style="border: 1px solid black">
<tr>
<td>学号</td>
<td>姓名</td>
<td>年龄</td>
</tr>
<?php
foreach($list as $v){
echo '<tr>';
echo '<td>'.$v['id'].'</td>';
echo '<td>'.$v['name'],'</td>';
echo '<td>'.$v['num'].'</td>';
echo '<td><a href="1.php?id='.$v['id'].'">编辑</a></td>';
echo '</tr>';
}
?>
</table>
</form>
</body>
</html> 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询