function a(n){
window.location.href="delete.php?id="+n
}
同一目录下新建一个delete.php;代码如下:直接拷贝粘贴:
<?php
header('content-type:text/htmlcharset=utf8')
$id = $_GET['id']
//连接数据库(你自己写)
//执行删除 *** 作
$del='delete from spbd_a where spid='.$id
mysql_query($del)or die('有毛病')
echo'<script language='javascript' type='text/javascript'>'
echo'alert('删除成功')hisory.back()'
echo'</script>'
?>
错误二:id必须是唯一的:你的页面<input id="spid"却有那么多个:
错误三:php传递数组的话应该用 <input id="spid" name="text[]" 而你却都是 name="text" 这样的话只能传递一个值
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)