我有一个 mySQL 数据库,我想将数据推送到其中,但是在运行代码然后查看 mySQL 数据库后,没有任何变化。
以下代码用于练习目的,未在实时网站上使用。
<?php
$myPDO = new PDO('mysql:host=localhost;dbname=user_information','root', 'root');
$result = $myPDO->query("INSERT INTO user_information (first_name, last_name, type_text)
VALUES ('John', 'Doe', 'john@example.com')");
?>
如果我直接在 mySQL 中使用以下查询,它会起作用:
INSERT INTO user_information (first_name, last_name, type_text)
VALUES ('John', 'Doe', 'john@example.com')
但是当我用 php 做它时它不起作用。
更新:
我以错误的方式定义了 dbname。它现在正在工作。
回首忆惘然
潇湘沐