夺命雷公狗---PDO NO:9 使用PDO准备语句并执行语句5
<?php header(“Content-Type:text/html;charset=utf-8″); try{ $pdo = new PDO(“mysql:host=localhost;dbname=xsphp”,’root’,”); $pdo -> setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION); $pdo -> query(“set names utf8″); }catch(PDOException $e){ echo “数据库连接失败:”.$e -> getMessage(); exit; } try{ $stmt = $pdo -> prepare(“insert into stu(‘name’,’age’) values(:name,:age)”); //如果是想修改的可以直接 //$stmt = $pdo -> prepare(“update stu set name=:name age=:age where id=:id”); //如果是想删除的可以直接 //$stmt = $pdo -> prepare(“delete from stu where id=:id”); //然后在执行的时候用数组绑定接客 //如果是get后者post传进来的参数呢?嘻嘻 $stmt -> execute($_GET); }catch(PDOException $e){ echo “错误:”.$e->getMessage(); }