gpt4 book ai didi

php - mysql查询没有将字符串插入表中?

转载 作者:行者123 更新时间:2023-11-29 14:37:30 24 4
gpt4 key购买 nike

我已经能够使用 phpmyadmin 在表中手动插入值,即使我最终使用从 php 我的管理员获得的相同 php 代码来调用查询,它仍然不会将值添加到表中。这是代码:

<?php
$link = mysql_connect('localhost', 'username', 'password');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';

mysql_select_db('sc2broating1', $link);

$sql = "INSERT INTO `sc2broad_tesing1`.`Persons` (`re`) VALUES (\'hello11\')";

mysql_query($sql);

mysql_close($link);

?>

最佳答案

不要逃避值(value)。

$sql = "INSERT INTO `sc2broad_tesing1`.`Persons` (`re`) VALUES ('hello11')";

关于php - mysql查询没有将字符串插入表中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8707510/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com