非常简单的内爆查询给出了内爆:传递了无效的参数

发布于 2024-12-25 11:07:24 字数 494 浏览 0 评论 0原文

今天是星期五,所以我显然没有看到事情的进展,所以我想在这里问。

我想使用以下方法从数据库中获取名称列表:

$test = mysql_query("SELECT Names FROM Content ORDER BY Names");

这应该给出 JimMikePeter (至少在 PHP MyAdmin 中是这样)

这不是很可读,所以我想,让内爆:

$line = implode( ", ", $test);
echo $line;

这应该给出: < code>Jim, Mike, Peter 但它没有,它给出:警告:implode() [function.implode]: 传递的参数无效

另外我想要这样的结果:<代码>“吉姆”, “Mike”,“Peter”(带引号)

有什么想法吗?

It's friday, so I am obviously not seeing things strait so I thought to ask here.

I want to get a list of names from the database using:

$test = mysql_query("SELECT Names FROM Content ORDER BY Names");

This should give JimMikePeter (at least it does in PHP MyAdmin)

This is not very readable so I thought, lets implode:

$line = implode( ", ", $test);
echo $line;

This should give: Jim, Mike, Peter but it doesn't, it gives: Warning: implode() [function.implode]: Invalid arguments passed

Also I want the result like this: "Jim", "Mike", "Peter" (with quotes)

Any thoughts?

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

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

发布评论

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

评论(2

自由如风 2025-01-01 11:07:24

您必须使用 mysql_fetch_array 获取数组。在 implode() 中使用查询作为参数会给你一个错误

You have to fetch the array using mysql_fetch_array. Using a query as a parameter in implode() will give you an error

为人所爱 2025-01-01 11:07:24

您应该知道 mysql_query 返回您需要的 PHP 手册 中记录的资源使用诸如 mysql_fetch_array 之类的获取函数来获取数据

You should know that mysql_query returns a resource documented in the PHP manual you nead to fetch the data with a fetch function like mysql_fetch_array

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