mysql_field_name(result,offset)

Description: Returns the name of a specified field in a result.

After calling mysql_list_fields(), mysql_query(), or another function that returns a resource identifier given by result, mysql_field_name() returns the name of a given field indexed by offset.

Example:

$result = mysql_list_fields ("cms", "subscribers");
$name = mysql_field_name ($result, 0);  // offset of 0 means the first column
echo "$name<BR>\n";

See also: mysql_field_flags(), mysql_field_len(), mysql_field_type(), mysql_list_fields()

Get Sams Teach Yourself MySQL in 21 Days, Second Edition 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.