Begging the boss for help
狂
2019-04-06 21:51:30
0
5
1332
请先看这几行代码
<?php

header("Content-Type:text/html; charset=utf-8");    //设置页面的编码格式

$dbms = "mysql";                                  // 数据库的类型

$dbName ="database9";                                //使用的数据库名称

$user = "root";                                   //使用的数据库用户名

$pwd = "root";                                    //使用的数据库密码

$host = "localhost";                              //使用的主机名称

$dsn  = "$dbms:host=$host;dbName=$dbName ";

try{                                             //捕获异常

    $pdo = new PDO($dsn,$user,$pwd);             //实例化对象
    $query="delete from member where id=1";//需要执行的sql语句

    $res=$pdo->exec($query);//执行添加语句并返回受影响行数

    echo "数据添加成功,受影响行数为: ".$res;

}catch(Exception $e){

    die("Error!:".$e->getMessage().'<br>');

}

?>

为什么我的运行结果没有返回行数并且字段也没有变化


狂

reply all(4)
路边的小蚂蚁i

Both questions come from this field code: $dsn = "$dbms:host=$host;dbName=$dbName ";

  1. N in dbName should be lowercase , $dsn = "$dbms:host=$host;dbname=$dbName ";

  2. There is an extra space at the end of the string

独行者

'id'=1 should be like this

独行者

Check your SQL statements

狂

Please give me some explanation


Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!