<p class="intro">获取update更新的多少行的函数用:mysql_affected_rows($conn) 或者用mysqli_affected_rows($conn)</p> <table width="620" align="center" border="0" cellpadding="1" cellspacing="1" style="background:#FB7"> <tr> <td width="464" height="27" bgcolor="#FFE7CE"> 代码如下</td> <td width="109" align="center" bgcolor="#FFE7CE" style="cursor:pointer;" onclick="doCopy('copy7109')">复制代码</td> </tr> <tr> <td height="auto" colspan="2" valign="top" bgcolor="#FFFFFF" style="padding:10px;" class="copyclass" id="copy7109"> <br> $sql = "update table a set aname='名字' where aid=88"; <br> $r = $conn->query($sql); <br> if ($r){ <br> echo "错误以为这里就是数据做了更新,如果这个aid为88的数据不存在语句同样返回true。"; <br> } </td> </tr> </table>