问大家一个超级难的问题
$id="100xxx";//为啥这样可以查出数据库中id=100的行
$sql='SELECT * From tablename where id=:id';
$stmt = $pdo->prepare($sql);
$stmt->bindParam(':id',$id);
$stmt->execute();
$row=$stmt->fetch();
$id="100xxx";//为啥这样可以查出数据库中id=100的行
$sql='SELECT * From tablename where id=:id';
$stmt = $pdo->prepare($sql);
$stmt->bindParam(':id',$id);
$stmt->execute();
$row=$stmt->fetch();
2017-01-05
举报