快愁死我了,查了一天的资料也没做出来
菜鸟中的菜鸟啊,刚进公司就让做项目啊
最简单的都不会啊,百度了半天也没找到方法
想问一下现在想做一个用户管理模块的增删改查,应该怎么做呢?
收先,select * from user 的输出怎么输出啊
还有,每个输出结果之后都要加个两个按钮 修改 删除
求解啊,怎么做啊
user 百度 增删改查问题
——解决方案——————–
我贴段源码你参考下。
<?php <br />session_start();<br />include 'conn/conn.php';<br />include 'check_login.php';<br />include 'page.class.php';<br />?><br /><br /><br /><br /><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><br /><title>更改医院信息</title><br /><link rel="stylesheet" type="text/css" href="style/modhos.css" /><br /><br /><body><br /><div id="content"><br /> <h1>123</h1><br /><table cellspacing="0"><br /> <caption>修改医院信息</caption><br /> <thead><br /> <th>医院名称</th><br /> <th>位置</th><br /> <th>总需求人数</th><br /> <th>是否分性别</th><br /> <th>需求男</th><br /> <th>需求女</th><br /> <th>操作</th><br /> <th>操作</th><br /> </thead><br /> <tbody><br /> <?php <br /> $sql = "select * from hos ;";<br /> $result = mysql_query($sql)or die(mysql_error());<br /> $page=new Page(mysql_num_rows($result),15);<br /> $sql="select * from hos order by id {$page->limit}";<br /> $result = mysql_query($sql)or die(mysql_error());<br /> $info = mysql_fetch_array($result);<br /> do {?><br /> <tr><br /> <td><?php echo $info['name'];?></td><br /> <td><?php echo $info['location'];?></td><br /> <td><?php echo $info['total'];?></td><br /> <td><?php<br /> if($info['same']){echo "是";}<br /> else{echo "否";};<br /> ?><br /> <td><?php <br /> if($info['same']){echo $info['men'];}<br /> else {echo "-";}?></td><br /> <td><?php <br /> if($info['same']){echo $info['wom'];}<br /> else {echo "-";}?></td><br /> <br /> <td>">更改</td><br /> <td>" onclick= "return confirm('你确定删除吗<strong style="color:transparent">本文来源gaodai#ma#com搞@@代~&码*网/</strong><strong>搞gaodaima代码</strong>?')">删除</td><br /> <br /> </tr><br /> <?php }while($info = mysql_fetch_assoc($result)); ?><br /> </tbody><br /> </table><br /> <br /><br /></div><br /><br />