非常简单的内爆查询给出了内爆:传递了无效的参数
今天是星期五,所以我显然没有看到事情的进展,所以我想在这里问。
我想使用以下方法从数据库中获取名称列表:
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须使用 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
您应该知道 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