msql_field_name
(PHP 3>= 3.0.7, PHP 4 )
msql_field_name -- Get field name
Description
string msql_field_name ( resource query_identifier, int
field)
msql_field_name() returns the name of the specified field
from the result resource query_identifier. msql_field_name($result,
2); will return the name of the second field in the result
set associated with the result identifier.
msql_field_seek
(PHP 3, PHP 4 )
msql_field_seek -- Set field offset
Description
int msql_field_seek ( int query_identifier, int field_offset)
Seeks to the specified field offset. If the next call to
msql_fetch_field() won't include a field offset, this field
would be returned.
This function returns FALSE on failure.
See also: msql_fetch_field().
|