Home  >  Article  >  Backend Development  >  Why can't I insert data?

Why can't I insert data?

WBOY
WBOYOriginal
2016-08-20 09:04:071040browse

$pdo=new PDO("mysql:host=localhost;dbname=t1","root","");
$txt=$_POST["txt"];
$sql="insert into user(txt)values($txt)";
$pdo->exec($sql);

Reply content:

$pdo=new PDO("mysql:host=localhost;dbname=t1","root","");
$txt=$_POST["txt"];
$sql="insert into user(txt)values($txt)";
$pdo->exec($sql);

$sql="insert into user(txt)values('$txt')";

Your txt should be a string type field, remember to add single quotes

Is there any error message? Try another way of writing

// 预处理
$sql = "INSERT INTO `user`(`txt`) VALUES (:txt)";
$stmt = $pdo->prepare($sql);
$stmt->execute([':txt' => $txt]);
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn