日期:2014-05-17  浏览次数:20357 次

快愁死我了,查了一天的资料也没做出来
菜鸟中的菜鸟啊,刚进公司就让做项目啊
最简单的都不会啊,百度了半天也没找到方法


想问一下现在想做一个用户管理模块的增删改查,应该怎么做呢?
收先,select * from user 的输出怎么输出啊
还有,每个输出结果之后都要加个两个按钮 修改 删除
求解啊,怎么做啊
user 百度 增删改查问题

------解决方案--------------------
我贴段源码你参考下。
<?php 
session_start();
include 'conn/conn.php';
include 'check_login.php';
include 'page.class.php';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>更改医院信息</title>
<link rel="stylesheet" type="text/css" href="style/modhos.css" />
</head>
<body>
<div id="content">
<h1>123</h1>
<table cellspacing="0">
<caption>修改医院信息</caption>
<thead>
<th>医院名称</th>
<th>位置</th>
<th>总需求人数</th>
<th>是否分性别</th>
<th>需求男</th>
<th>需求女</th>
<th>操作</th>
<th>操作</th>
</thead>
<tbody>
<?php 
$sql = "select * from hos ;";
$result = mysql_query($sql)or die(mysql_error());
$page=new Page(mysql_num_rows($result),15);
$sql="select * from hos order by id {$page->limit}";
$result = mysql_query($sql)or die(mysql_error());
$info = mysql_fetch_array($result);
do {?>
<tr>
<td><?php echo $info['name'];?></td>
<td><?php echo $info['location'];?></td>
<td><?php echo $info['total'];?></td>
<td><?php
if($info['same']){echo "是";}
else{echo "否";};
?>
<td><?php 
if($info['same']){echo $info['men'];}
else {echo "-";}?></td>
<td><?php 
if($info['same']){echo $info['wom'];}
else {echo "-";}?></td>

<td><a href="mod_hos1.php?id=<?php echo $info['id'];?>">更改</a></td>
<td><a href="del_hos.php?id=<?php echo $info['id'];?>" onclick= "return confirm('你确定删除吗?')">删除</a></td>

</tr>
<?php }while($info = mysql_fetch_assoc($result)); ?>
</tbody>
</table>


</div>
</body>
</html>