gpt4 book ai didi

php - php mysql 没有选择数据库错误

转载 作者:行者123 更新时间:2023-11-29 07:52:02 25 4
gpt4 key购买 nike

我已经在 phpmyadmin 中创建了一个数据库。当我提交表单时,脚本应该将数据插入数据库。但是,我收到错误“未选择数据库”。您能看一下我的代码,看看是否能找到我出错的地方。谢谢

    $dbc = mysqli_connect('localhost','aliendatabase') or die('Error connecting to MySQL      server.');
$query = "INSERT INTO aliens_abduction (first_name, last_name, when_it_happened, how_long, ".
"how_many, alien_description, what_they_did, fang_spotted, other, email) " .
"VALUES ('$first_name', '$last_name', '$when_it_happened', '$how_long', '$how_many', " .
"'$alien_description', '$what_they_did', '$fang_spotted', '$other', '$email')";


$result = mysqli_query($dbc, $query)
or die(mysqli_error($dbc));

mysqli_close($dbc);

最佳答案

正确的语法是

mysqli_connect('host','username', 'password', 'database_name');

阅读手册:- http://in2.php.net/manual/en/function.mysqli-connect.php

对于没有密码的本地主机

mysqli_connect('localhost','root', '', 'database_name');

关于php - php mysql 没有选择数据库错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26160098/

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