请看php代码 搞不懂if($result && mysql_affected_rows()>0)求详解!
<?phpinclude'./public/config.php';$id=$_GET['id'];$sql="deletefromtypewhereid=$id";$r...
<?php
include './public/config.php';
$id=$_GET['id'];
$sql=" delete from type where id = $id " ;
$result=mysql_query($sql);
if($result && mysql_affected_rows()>0){
echo "<script>alert('delete succeed');location='type_list.php'</script>";
}else{
echo "<script>alert(' Delete failed!');location='type_list.php'</script>";
}
?> 展开
include './public/config.php';
$id=$_GET['id'];
$sql=" delete from type where id = $id " ;
$result=mysql_query($sql);
if($result && mysql_affected_rows()>0){
echo "<script>alert('delete succeed');location='type_list.php'</script>";
}else{
echo "<script>alert(' Delete failed!');location='type_list.php'</script>";
}
?> 展开
3个回答
展开全部
mysql_affected_rows()的方法是获取最近一次对数据库数据操作影响的行数。
该段的意思是:
<?php
include './public/config.php'; //载入config.php文件
$id=$_GET['id']; //获取id值(可能是浏览器地址栏中id参数)
$sql=" delete from type where id = $id " ; (删除type表中id=$id的数据)
$result=mysql_query($sql);(执行sql语句)
if($result && mysql_affected_rows()>0){ (如果执行成功并且该执行的确删除了一行或多行数据)
echo "<script>alert('delete succeed');location='type_list.php'</script>"; (弹出成功,跳转页面)
}else{
echo "<script>alert(' Delete failed!');location='type_list.php'</script>";(弹出失败,跳转页面)
}
?>
该段的意思是:
<?php
include './public/config.php'; //载入config.php文件
$id=$_GET['id']; //获取id值(可能是浏览器地址栏中id参数)
$sql=" delete from type where id = $id " ; (删除type表中id=$id的数据)
$result=mysql_query($sql);(执行sql语句)
if($result && mysql_affected_rows()>0){ (如果执行成功并且该执行的确删除了一行或多行数据)
echo "<script>alert('delete succeed');location='type_list.php'</script>"; (弹出成功,跳转页面)
}else{
echo "<script>alert(' Delete failed!');location='type_list.php'</script>";(弹出失败,跳转页面)
}
?>
展开全部
if($result && mysql_affected_rows()>0)
$result 为true 与 mysql_affected_rows()影响行数(就是你删除了几行)大于0 时,提醒删除成功
你执行的是删除,$result 是id
$result 为true 与 mysql_affected_rows()影响行数(就是你删除了几行)大于0 时,提醒删除成功
你执行的是删除,$result 是id
追问
行数是通过主键指定的吗?
追答
行数就是你删除了几条数据!!!
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2014-04-25
展开全部
if($result && mysql_affected_rows()>0) 如果执行成功并且影响的行数大于0行.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询