最新回答 / 乔帮主
http://www.cnblogs.com/zcy_soft/archive/2011/06/30/2094058.html 你看看这个里面的吧,有很详细的说明!
2016-01-04
最新回答 / MaxJin
$sql="select * from user where username=? and password=?";$res=$mysqli->prepare($sql);$res->bind_param('ss',$username,$password);$res->execute();$res->store_result();echo $res->num_rows;exit;这样就可以
2015-11-29