列清单的代码不正确,没有把编号作为参数传递给删除的PHP程序,修改如下:
成都创新互联服务项目包括滨江网站建设、滨江网站制作、滨江网页制作以及滨江网络营销策划等。多年来,我们专注于互联网行业,利用自身积累的技术优势、行业经验、深度合作伙伴关系等,向广大中小型企业、政府机构等提供互联网行业的解决方案,滨江网站推广取得了明显的社会效益与经济效益。目前,我们服务的客户以成都为中心已经辐射到滨江省份的部分城市,未来相信会继续扩大服务区域并继续获得客户的支持与信任!
?php
while(list($id,$content,$date)=$stmt-fetch(PDO::FETCH_NUM))
{
echo "tr
td$id/td
td$content/td
td$date/td
tda href='ed.php?id=$id'编辑/a
a href='del.php?id=$id'删除/a/td
/tr";
}
删除的文件有的小的修改,把判断if(isset($_get['sc']))取消,只需要判断参数id既可,这样:
$id=$_GET['id'];
if($id!=''){
....执行delete....
}
?php
if(isset($_GET['id'])!empty($_GET['id'])){
$id=intval($_GET['id']);
$sql="delete from jxkc_a1 where id = $id";
if(mysql_query($sql)){
echo "script type='text/javascript'alert('操作成功')/script";
}else{
echo "script type='text/javascript'alert('操作失败')/script";
}
}
?
?php
$arr = mysql_query("select * from jxkc_a1 where username='$username' order by id desc" );
while($result = mysql_fetch_array($arr))
{?
tr
tdspan class="STYLE9" ?php echo $result["lesson"];? /td
tdspan class="STYLE9" ?php echo $result["plantime"];? /td
tdspan class="STYLE9" ?php echo $result["student"];? /td
tdspan class="STYLE9" ?php echo $result["classtime"];? /td
tdspan class="STYLE9" ?php echo $result["type"];? /td
tda href=(这里假设你的地址是./list.php)"./list.php?id=?php echo $result["id"] ?" onclick=".......js"删除/a/td
/tr?php } ?
1:这行代码代替你的删除代码:echo "a href='del.php?id=."$row['sysuser_id']".'删除/a";
2:建一个名为del.php文件,在里面写删除功能
?php
$id = $_GET['id'];//获取要删除的ID
//把你的链接数据库代码写这里
$result = mysql_query("delete from sysuser where sysuser_id = {$id}");
if($result){
echo "删除成功";
}else{
echo "删除失败";
}