odbc_field_name

string odbc_field_name(resource result, int field) 

Displays field name.

Returns:

Name of the specified field; FALSE on error

Description:

Returns the name of the field specified by a field number. Numbering starts at 1.

Version:

Existing since version 3.0.6

Example:

Display field names
$db = odbc_connect("DSN","user","pass"); 
$sql = "SELECT * FROM Products"; 
$result = odbc_exec($db, $sql); 
odbc_fetch_row($result); 
for ($col=1; $col<=odbc_num_fields($result); $col++) {
   printf("Column Name: %s\n", odbc_field_name($result, $col)); 

Get PHP Functions Essential Reference now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.