Mamp phpMyAdmin 表查询

发布于 2024-10-18 02:29:24 字数 802 浏览 1 评论 0原文

我遇到的问题是我的代码似乎是正确的,并且在查询或连接到我的数据库时没有收到错误。 “错误编号 0:...” 但是当我检查 phpMyAdmin 时它显然没有查询。我已经检查了我所有的标题、表名、数据库名称,一切都很好。我的查询将不会运行或插入。这是我的代码:

  mysql_connect('localhost', 'root', 'root', 'aliendatabase');
   if (!$dbc) {
    die('Error connecting to MySQL server.' . mysql_error());
  }

  $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')";

 mysql_query($query, $aliendatabase);
 echo "error number" . mysql_errno() . ": " . mysql_error() . "\n";

echo 'Connected Successfully';
  mysql_close($dbc);

I am having an issue were my code appears to be correct and am getting no errors querying or connecting to my database. "ErrorNumber 0:..."
But when i check phpMyAdmin it clearly has not queried. I have check all of my titles and table names, database name and everything is fine. My query will just not run or insert. here is my code:

  mysql_connect('localhost', 'root', 'root', 'aliendatabase');
   if (!$dbc) {
    die('Error connecting to MySQL server.' . mysql_error());
  }

  $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')";

 mysql_query($query, $aliendatabase);
 echo "error number" . mysql_errno() . ": " . mysql_error() . "\n";

echo 'Connected Successfully';
  mysql_close($dbc);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

音盲 2024-10-25 02:29:24

$dbc是什么?

它应该是 $dbc = mysql_connect(...) 来测试连接。

what is $dbc ?

It should rather be $dbc = mysql_connect(...) to test the connection.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文