文章删除失败?
<?php /* 文章删除操作处理 */ require_once('../connect.php'); $id = $_GET['id']; $deletesql = "delete * from article where id = $id"; if(mysql_query($deletesql)){ echo "<script>alert ('delete true');window.location.href = 'article.manage.php'</script>"; } else{ echo "<script>alert ('delete false');window.location.href = 'article.manage.php'</script>"; } ?>