php操作pdo实现插入

getMessage();
}

//插入
$sql = "insert into stu(name,age) values(?,?)";
//准备sql模板
$stmt = $pdo->prepare($sql);
$name = 'smith';
$age = 52;
//绑定参数
$stmt->bindValue(1,$name);
$stmt->bindValue(2,$age);
//执行预处理语句
$stmt->execute();
$insert_id = $pdo->lastInsertId();
if($insert_id)
{
    echo '新增成功'.'
'; } else { echo '新增失败'.'
'; } //释放查询结果 $stmt = null; //关闭连接 $pdo = null;

你可能感兴趣的:(php)