Query: fbsql_field_name
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
FBSQL_FIELD_NAME(3) 1 FBSQL_FIELD_NAME(3) fbsql_field_name - Get the name of the specified field in a resultSYNOPSISstring fbsql_field_name (resource $result, [int $field_index])DESCRIPTIONReturns the name of the specified field index.PARAMETERSo $result - A result pointer returned by fbsql_list_fields(3). o $field_index - The numerical offset of the field. The field index starts at 0.RETURN VALUESReturns the name as a string, or FALSE if the field doesn't exist.EXAMPLESExample #1 fbsql_field_name(3) example <?php // The users table consists of three fields: // user_id // username // password. $res = fbsql_db_query("users", "select * from users", $link); echo fbsql_field_name($res, 0) . " "; echo fbsql_field_name($res, 2); ?> The above example will output: user_id passwordSEE ALSOfbsql_field_type(3). PHP Documentation Group FBSQL_FIELD_NAME(3)
Related Man Pages |
---|
fbsql_fetch_assoc(3) - php |
mssql_field_name(3) - php |
mysql_field_name(3) - php |
pg_field_name(3) - php |
pg_free_result(3) - php |