你应该把id用GET方式传递过去,也就是说上面代码改为:onclick="window.location.href='<?php echo "/edit.php?id=".$row['id']?>,然后在edit.php接收
<?php$id = $_GET['id']
$sql = "select * from yourtable where id = {$id}"
?>
编辑:(可以新建一个页面用来处理编辑事件)以下是编辑核心代码
获取传递过来的参数
$id=$_POST["id"]
$programname=$_POST["programname"]
$date=$_POST["date"]
$time=$_POST["time"]
$type=$_POST["type"]
$channel=$_POST["channel"]
$detail=$_POST["detail"]
$tuijian=$_POST["tuijian"]
进行更新 *** 作
$sql="update program set programname='$programname',date='$date',time='$time',type='$type',time='$time',channel='$channel',detail='$detail',tuijian='$tuijian' where id=$id"
删除:和编辑类似
$sql="delete from program where id=$id"
if(mysql_query($sql)){
echo "<script language=javascript>alert('删除成功')window.location='news_list.php'</script>"
}else{
echo "<script language=javascript>alert('删除失败')window.location='news_list.php'</script>"
}
?>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)