gpt4 book ai didi

php - 如何在mysql中检索数据库列名

转载 作者:可可西里 更新时间:2023-11-01 08:35:30 26 4
gpt4 key购买 nike

我有一个名为“author”的数据库表,当有人注册然后访问他的个人资料时,我想显示如下结果

Name : user name here
Email : email here
location : location here

位置、电子邮件和名称是数据库列名称。我可以取回数据库值,但无法取回数据库列名。我该怎么做?

更新:这是我的代码

$query = "SELECT * 
FROM author
WHERE id = {$author_id};
$author_info = mysql_query($query, $connection);
$author_details = mysql_fetch_assoc($author_info);
foreach ($author_details as $fieldname) {
echo $fieldname;
}

从这段代码中,我只得到名称、位置、电子邮件的值,但我还需要打印列名称,如名称、电子邮件、位置及其列值。

最佳答案

试试这个查询,

SHOW columns FROM your-table-name;

关于php - 如何在mysql中检索数据库列名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14281700/

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