如何在php / mysql中获取列名和结果集?

时间:2009-12-05 18:59:35

标签: php mysql

这样可以吗?

$i = 0;
while ($row = mysql_fetch_array($result))
{
    $resultset[] = $row;
    $columns[] = mysql_fetch_field($result, $i);
}

然后在尝试打印时

<tr><th><?php echo $columns[0] ?></th><th><?php echo $columns[1] ?></th></tr>

我收到了错误

Catchable fatal error: Object of class stdClass could not be converted to string

6 个答案:

答案 0 :(得分:22)

尝试mysql_fetch_field功能。

例如:

<?php
$dbLink = mysql_connect('localhost', 'usr', 'pwd');
mysql_select_db('test', $dbLink);

$sql = "SELECT * FROM cartable";
$result = mysql_query($sql) or die(mysql_error());

// Print the column names as the headers of a table
echo "<table><tr>";
for($i = 0; $i < mysql_num_fields($result); $i++) {
    $field_info = mysql_fetch_field($result, $i);
    echo "<th>{$field_info->name}</th>";
}

// Print the data
while($row = mysql_fetch_row($result)) {
    echo "<tr>";
    foreach($row as $_column) {
        echo "<td>{$_column}</td>";
    }
    echo "</tr>";
}

echo "</table>";
?>

答案 1 :(得分:14)

使用mysql_fetch_assoc只获取一个关联数组,并在第一次迭代时检索列名:

$columns = array();
$resultset = array();
while ($row = mysql_fetch_assoc($result)) {
    if (empty($columns)) {
        $columns = array_keys($row);
    }
    $resultset[] = $row;
}

现在你也可以用第一次迭代打印你的表头:

echo '<table>';
$columns = array();
$resultset = array();
while ($row = mysql_fetch_assoc($result)) {
    if (empty($columns)) {
        $columns = array_keys($row);
        echo '<tr><th>'.implode('</th><th>', $columns).'</th></tr>';
    }
    $resultset[] = $row;
    echo '<tr><td>'.implode('</td><td>', $rows).'</td></tr>';
}
echo '</table>';

答案 2 :(得分:8)

你想看看

 mysql_fetch_assoc

将每行作为关联键=&gt;值对,其中键是列名。

文档here

答案 3 :(得分:0)

虽然它已弃用且不再使用PHP 7,但您可以避免使用函数mysql_field_name而不是使用函数来返回字符串。

答案 4 :(得分:0)

试试这个

     $result=mysql_query('SELECT * FROM `table1` where id=5') or die ('query failed');   
echo "<table>";
        while ($row=mysql_fetch_assoc($result)) {
                $column = array_keys($row);
                for($i=0; $i<sizeof($column); $i++){
                echo "<tr><th>".$column[$i]."</th><td>".$row[$column[$i]]."</td></tr>";
                }
            }
echo "</table>";

OR

 $result=mysql_query('SELECT * FROM `table1` where id=5') or die ('query failed');   
    echo "<table>";
            $row=mysql_fetch_assoc($result);
                    $column = array_keys($row);
                    for($i=0; $i<sizeof($column); $i++){
                    echo "<tr><th>".$column[$i]."</th><td>".$row[$column[$i]]."</td></tr>";
                    }

    echo "</table>";

答案 5 :(得分:0)

这是使用...i的更现代的解决方案:

$db_link = @mysqli_connect($server, $user, $pass, $db) or die("Connection failed");
$spalten = ['pc_name', 'pc_type', 'pc_snr', 'pc_bj', 'mo_port_1', 'mo_snr_1', 'mo_bj_1', 'mo_port_2', 'mo_snr_2', 'mo_bj_2'];

$abfrage = "SELECT " . implode(',', $spalten) . " FROM hardware order by pc_name";

$liste = mysqli_query($db_link, $abfrage);
$spalten = mysqli_num_fields($liste);


while ($werte[] = mysqli_fetch_array($liste, MYSQLI_ASSOC)) {}
    <table class="display" id="table" style="width:100%">
        <thead>
            <tr>
                <?php
                for ($i = 0; $i < $spalten; $i++) {
                    $feldname[$i] = mysqli_fetch_field_direct($liste, $i)->name;
                    echo '<th>' . ucfirst($feldname[$i]) . '</th>';
                }
                ?>
            </tr>
        </thead>
        <tbody>
            <?php
            for ($i = 0; $i < mysqli_num_rows($liste); $i++) {
            ?>
                <tr>
                    <?php for ($j = 0; $j < $spalten; $j++) {
                    ?>
                        <td><?php
                            echo $werte[$i][$feldname[$j]];
                            ?>

                        </td>
                    <?php } ?>
                </tr>
            <?php } ?>
        </tbody>
    </table>