K získání názvů polí nepotřebujete další dotaz SQL. Můžete použít svůj normální dotaz SELECT a získat názvy polí (a definici) z tohoto dotazu. Lepší výkon tímto způsobem!
Zastaralé řešení MySQL:
Knihovna MySQL je zastaralá. Lze jej použít jako v tomto odkazu, ale měli byste přejít na knihovnu mysqli, která je při procedurálním použití téměř identická (druhá ukázka).
http://www.php.net/manual/en/function.mysql-field-name.php
Řešení OOP MySQLi:
$query = "SELECT Name, SurfaceArea from Country ORDER BY Code LIMIT 5";
if ($result = $mysqli->query($query)) {
/* Get field information for all columns */
while ($finfo = $result->fetch_field()) {
printf("Name: %s\n", $finfo->name);
printf("Table: %s\n", $finfo->table);
printf("max. Len: %d\n", $finfo->max_length);
printf("Flags: %d\n", $finfo->flags);
printf("Type: %d\n\n", $finfo->type);
}
$result->close();
}
Procedurální řešení MySQLi:
$query = "SELECT Name, SurfaceArea from Country ORDER BY Code LIMIT 5";
if ($result = mysqli_query($link, $query)) {
/* Get field information for all fields */
while ($finfo = mysqli_fetch_field($result)) {
printf("Name: %s\n", $finfo->name);
printf("Table: %s\n", $finfo->table);
printf("max. Len: %d\n", $finfo->max_length);
printf("Flags: %d\n", $finfo->flags);
printf("Type: %d\n\n", $finfo->type);
}
mysqli_free_result($result);
}
http://www.php.net/manual/en /mysqli-result.fetch-field.php