dragon321723 2013-12-18 03:27
浏览 107
已采纳

从MySQL查询中检索列名[重复]

This question already has an answer here:

I am attempting to retrieve the column headers for html headers from a MySQL query. The structure of my application is such that the column headers aren't static (sometimes there are 4, sometimes 7, etc.) For some unbearable reason I can't find a simple way to get the column names from any given query.

My end goal is to output an html table from the query.

</div>
  • 写回答

3条回答 默认 最新

  • dpd2349 2013-12-18 03:30
    关注

    Well if you get the query as an associative array, you can do something like this:

    $query = "Select [stuff]";
    $results = mysql_query($query);
    $i = 0;
    
    while ($row = mysql_fetch_assoc($results)) {
        if ($i < 1) {
            foreach($row as $key => $val) {
                echo $key;//column name
            }
        }
    
        //Do other stuff
        $i++;
    }
    

    And yes, I know they should be doing mysqli_..., but this is my example using old mysql_...

    Edit

    To expand on this:

    $query = "Select [stuff]";
    $results = mysql_query($query);
    $i = 0;
    
    echo "<table>";
    
    while ($row = mysql_fetch_assoc($results)) {
        echo "<tr>";
        if ($i < 1) {
            foreach($row as $key => $val) {
                echo "<td>".$key."</td>";//column name
            }
        }
        echo "</tr>";
    
        echo "<tr>";
        foreach($row as $key => $val) {
            echo "<td>".$val."</td>";//column name
        }
        echo "</tr>";
    
        //Do other stuff
        $i++;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥100 求数学坐标画圆以及直线的算法
  • ¥35 平滑拟合曲线该如何生成
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 自己瞎改改,结果现在又运行不了了
  • ¥15 链式存储应该如何解决