如何使用php将数据放入mysql数据库中

我有一个 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。它现在正在工作。


桃花长相依
浏览 142回答 2
2回答

回首忆惘然

你可以这样做,并有一个 sql 注入预防$stmt = $myPDO->prepare("INSERT INTO user_information (first_name,last_name, type_text)"&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; . "VALUES (?,?,?);");$stmt->bind_param('sss', 'John', 'Doe', 'john@example.com');$stmt->execute();$stmt->get_result();这会将每个输入定义为字符串并防止将所有内容输入到数据库中,但如果不是,您可以删除分号

潇湘沐

正确的语法是$result&nbsp;=&nbsp;$myPDO->query("INSERT&nbsp;INTO&nbsp;user_information&nbsp;(first_name,&nbsp;last_name,&nbsp;type_text)&nbsp;VALUES&nbsp;('John',&nbsp;'Doe',&nbsp;'john@example.com')");
打开App,查看更多内容
随时随地看视频慕课网APP