drupal模块中查询数据库并将结果存储在数组中

发布于 2024-09-15 11:42:18 字数 216 浏览 6 评论 0原文

我的数据库中有一个名为 gsm_tariff 的表。基本上我只想运行一个简单的选择查询

"SELECT * FROM {gsm_tariff} WHERE Country='Afghanistan'"

并将结果存储在数组中。谁能帮我解决这个问题吗?我知道把代码和所有东西放在哪里;我只需要代码来执行查询并将结果存储在数组中。

I have a table in my database called gsm_tariff. Basically I just want to run a simple select query

"SELECT * FROM {gsm_tariff} WHERE Country='Afghanistan'"

and store the results in an array. Can anyone help me with how to do this please? I know where to put the code and everything; I just need the code to do the query and store the results in an array.

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

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

发布评论

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

评论(1

一百个冬季 2024-09-22 11:42:18
$array = array();

$result = db_query('SELECT * FROM {gsm_tariff} WHERE Country = "%s"', 'Afghanistan');

while ($record = db_fetch_object($result)) {
   $array[] = $record->(data to reference);   
}

请注意,我不知道给定问题时您要引用的字段,但它将位于 $record 对象中。

$array = array();

$result = db_query('SELECT * FROM {gsm_tariff} WHERE Country = "%s"', 'Afghanistan');

while ($record = db_fetch_object($result)) {
   $array[] = $record->(data to reference);   
}

Note that I don't know the field you want to reference given the question, but it would be in the $record object.

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