标签:
<?php $sql=‘SELECT email FROM users WHERE id = :id‘; $statement=$pdo->prepare($sql);
$userId=filter_input(INPUT_GET,‘id‘); $statement->bindValue(‘:id‘,$userId,PDO::PARAM_INT);
$statement->excute();
标签:
原文地址:http://www.cnblogs.com/fenle/p/5216854.html