|
Information about Cursors | wb_field_num |
This function returns the name of the column specified by the column number in the cursor.
A string with the column name. FALSE if an error occurs.
Get the name of the third column in the $cursor cursor:
$result = wb_field_name($cursor,3); if( $result==FALSE ) { /* handle the error */ } else { echo "column name: ",$result; }
Information about Cursors | wb_field_num |