gpt4 book ai didi

php - 插入查询未插入数据库

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

我发现我的脚本没有任何问题,我不明白为什么它不会插入到我创建的数据库中。请查看我的代码并提出可能存在问题的建议。这是 dbcon.php,它用于所有数据库连接

<?php
$host="localhost";
$user="root";
$password="";
$db="cottonboard";
$tablename="user";
mysql_connect($host,$user,$password) or die(mysql_error());
mysql_select_db($db) or die(mysql_error());
?>

现在这是将输入插入数据库的脚本,

<?php

include "dbcon.php";


extract($_POST);


/* just to test if all fields will be outputted
print_r($_POST);*/

$sql="INSERT INTO $tablename(id,username,password,accesslevel,sex,contactnmuber,employer)
VALUES('null','$usernameuser','$passworduser','$accesslevel','$gender','$contactnumberuser','$employeruser')" or die(mysql_error());

if($sql)
{
echo"we got here safe";
}

?>

最佳答案

// ...
$c = mysql_connect($host,$user,$password) or die(mysql_error());
// ...
mysql_query($sql, $c);

关于php - 插入查询未插入数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19491465/

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