sql >> Database teknologi >  >> RDS >> Mysql

Hvordan får man kolonnenavnene sammen med resultset i php/mysql?

Prøv mysql_fetch_field funktion.

For eksempel:

<?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. PHP PDO bindParam for variabel/streng brugt til IN-sætning...?

  2. SÆT SQLBLANKLINES:Sådan tillades tomme linjer i SQLcl &SQL*Plus

  3. Bruger du pladsholder? i Go mySql-forespørgsel til alt andet end int

  4. SQL Query Join i CodeIgniter