php显示页面后面加编辑和删除按钮,可以编辑和删除每行的信息
一个小程序,现在只有输入和保存的功能,现在想再显示的列表里,添加一个编辑和删除按钮,请高手指点<?php@header('Content-type:text/html;c...
一个小程序,现在只有输入和保存的功能,现在想再显示的列表里,添加一个编辑和删除按钮,请高手指点
<?php @header('Content-type: text/html;charset=UTF-8');
require_once 'conn.php';
require_once("SubPages.php");
//每次显示的页数
$sub_pages=10;
//每页显示的条数
$page_size=100;
//得到当前是第几页
@$pageCurrent=$_GET['p'];
if(!$pageCurrent) $pageCurrent=1;
//连接数据库
$db=new MySql("localhost","root","","test");
if(isset($_POST['sub']) && !empty($_POST['search'])){
$search=trim($_POST['search']);
$sql="select * from custominfo where customQQ Like '%$search%'";
$query=$db->query($sql);
$nums=$db->num_rows($query);
$sql="select * from custominfo where customQQ Like '%$search%' order by id limit ".($pageCurrent - 1) * $page_size.",$page_size";
$query=$db->query($sql);
}else{
$sql="select * from custominfo";
$query=$db->query($sql);
//总条目数
$nums=$db->num_rows($query);
$sql="select * from custominfo order by id limit ".($pageCurrent - 1) * $page_size.",$page_size";
$query=$db->query($sql);
}
?>
<center><font size="20">客户资料存储中心</font></center>
<hr size="6" color="#ff0000"/>
<form name="frmsearch" action="" method="POST">
<input type="hidden" name="id" id="id" value="22"/>
<table width="90%" border="1" align="center">
<tbody>
<tr>
<td colspan=6 align="right">
<input type="text" align="right" name="search" id="search"></input>
</td>
<td>
<input type="submit" name="sub" value="根据客户QQ查询" align="right"></input>
</td>
</tr>
</tbody>
</table>
</form>
<table width="90%" border="1" bordercolor="#260000" align="center">
<tbody>
<tr>
<th>QQ </th>
<th>店铺</th>
<th>旺旺</th>
<th>昵称</th>
<th>名称</th>
<th>价格</th>
<th>日期</th>
</tr>
<?php
while($row=$db->fetch_array($query)){
?>
<tr>
<td>
<?php
if(empty($row['customQQ'])){
echo("无");
}else{
echo($row['customQQ']);
}
?>
</td>
<td>
<?php
if(empty($row['customshop'])){
echo("无");
}else{
echo($row['customshop']);
}
?>
</td>
<td>
<?php
if(empty($row['mywangwang'])){
echo("无");
}else{
echo($row['mywangwang']);
}
?>
</td>
<td>
<?php
if(empty($row['myshop'])){
echo("无");
}else{
echo($row['myshop']);
就是想在这个时间后面加一个编辑和删除的按钮,然后可以实现编辑和删除该条数据 展开
<?php @header('Content-type: text/html;charset=UTF-8');
require_once 'conn.php';
require_once("SubPages.php");
//每次显示的页数
$sub_pages=10;
//每页显示的条数
$page_size=100;
//得到当前是第几页
@$pageCurrent=$_GET['p'];
if(!$pageCurrent) $pageCurrent=1;
//连接数据库
$db=new MySql("localhost","root","","test");
if(isset($_POST['sub']) && !empty($_POST['search'])){
$search=trim($_POST['search']);
$sql="select * from custominfo where customQQ Like '%$search%'";
$query=$db->query($sql);
$nums=$db->num_rows($query);
$sql="select * from custominfo where customQQ Like '%$search%' order by id limit ".($pageCurrent - 1) * $page_size.",$page_size";
$query=$db->query($sql);
}else{
$sql="select * from custominfo";
$query=$db->query($sql);
//总条目数
$nums=$db->num_rows($query);
$sql="select * from custominfo order by id limit ".($pageCurrent - 1) * $page_size.",$page_size";
$query=$db->query($sql);
}
?>
<center><font size="20">客户资料存储中心</font></center>
<hr size="6" color="#ff0000"/>
<form name="frmsearch" action="" method="POST">
<input type="hidden" name="id" id="id" value="22"/>
<table width="90%" border="1" align="center">
<tbody>
<tr>
<td colspan=6 align="right">
<input type="text" align="right" name="search" id="search"></input>
</td>
<td>
<input type="submit" name="sub" value="根据客户QQ查询" align="right"></input>
</td>
</tr>
</tbody>
</table>
</form>
<table width="90%" border="1" bordercolor="#260000" align="center">
<tbody>
<tr>
<th>QQ </th>
<th>店铺</th>
<th>旺旺</th>
<th>昵称</th>
<th>名称</th>
<th>价格</th>
<th>日期</th>
</tr>
<?php
while($row=$db->fetch_array($query)){
?>
<tr>
<td>
<?php
if(empty($row['customQQ'])){
echo("无");
}else{
echo($row['customQQ']);
}
?>
</td>
<td>
<?php
if(empty($row['customshop'])){
echo("无");
}else{
echo($row['customshop']);
}
?>
</td>
<td>
<?php
if(empty($row['mywangwang'])){
echo("无");
}else{
echo($row['mywangwang']);
}
?>
</td>
<td>
<?php
if(empty($row['myshop'])){
echo("无");
}else{
echo($row['myshop']);
就是想在这个时间后面加一个编辑和删除的按钮,然后可以实现编辑和删除该条数据 展开
1个回答
2012-10-30 · 知道合伙人软件行家
关注
展开全部
在每行的末尾加一个td
删除 echo '<a href="处理页.php?act=delete&id='.$row['id'].'" onClick="return confirm('确定删除吗?');">删除</a>';
编辑 echo '<a href="处理页.php?act=update&id='.$row['id'].'">编辑</a>';
在处理页接受act和id,再经行相应处理
删除 echo '<a href="处理页.php?act=delete&id='.$row['id'].'" onClick="return confirm('确定删除吗?');">删除</a>';
编辑 echo '<a href="处理页.php?act=update&id='.$row['id'].'">编辑</a>';
在处理页接受act和id,再经行相应处理
追问
我能否传给你,帮我具体编辑下,求解,谢谢
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询