码迷,mamicode.com
首页 > 数据库 > 详细

数据库查看详细信息操作

时间:2016-06-27 19:59:37      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

<?php
include_once"connect.php";

if(!$_GET[‘ud‘])
{
    echo "wrong";//如果未传值过来,则显示错误
}
$ud=$_GET[‘ud‘];
$sql="select * from stu where stu_id=$ud";
$re=mysql_query($sql);

?>
<html>
<head>
<title>show</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<center>
<body>
<table border="1" width=‘30%‘>
<tr align="center ">学生详细信息</tr>
<tr>
	<td>编号</td>
	<td>姓名</td>
	<td>年龄</td>
	<td>性别</td>
</tr>

<?php
mysql_query("set names utf8");
while($row=mysql_fetch_assoc($re))
{
?>	<tr>
	<td><?php echo $row[‘stu_id‘];?></td>
	<td><?php echo $row[‘stu_name‘];?></td>
	<td><?php echo $row[‘stu_sex‘];?></td>
	<td><?php echo $row[‘stu_age‘];?></td>
	</tr>

<?php	
}
?>
	
<?php
mysql_close($conn);
?>
</table>
<a href=‘table.php‘><input name="return" type="button" value="返回" ></a>
</body>
</center>
</html>


到此,一个超小型的项目就完成了,还需多多体会其中的方法和思想!!

 

数据库查看详细信息操作

标签:

原文地址:http://www.cnblogs.com/-beyond/p/5621249.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!