msql_list_fields

(PHP 4, PHP 5, PHP 7) List result fields resource msql_list_fields ( string $database, string $tablename [, resource $link_identifier ] ) msql_list_fields() returns information about the given table. Parameters: database The name of the database. tablename The name of the table. link_identifier The mSQ

msql_list_dbs

(PHP 4, PHP 5, PHP 7) List mSQL databases on server resource msql_list_dbs ([ resource $link_identifier ] ) msql_list_tables() lists the databases available on the specified link_identifier. Parameters: link_identifier The mSQL connection. If not specified, the last link opened by msql_connect() is assumed. If no such link is found, the function will try to establish a lin

msql_free_result

(PHP 4, PHP 5, PHP 7) Free result memory bool msql_free_result ( resource $result ) msql_free_result() frees the memory associated with query_identifier. When PHP completes a request, this memory is freed automatically, so you only need to call this function when you want to make sure you don't use too much memory while the script is running. Parameters: result The result

msql_fieldtype

(PHP 4, PHP 5, PHP 7) Alias of msql_field_type() This function is an alias of msql_field_type().

msql_fieldtable

(PHP 4, PHP 5, PHP 7) Alias of msql_field_table() This function is an alias of msql_field_table().

msql_fieldname

(PHP 4, PHP 5, PHP 7) Alias of msql_field_name() This function is an alias of msql_field_name().

msql_fieldlen

(PHP 4, PHP 5, PHP 7) Alias of msql_field_len() This function is an alias of msql_field_len().

msql_fieldflags

(PHP 4, PHP 5, PHP 7) Alias of msql_field_flags() This function is an alias of msql_field_flags().

msql_field_type

(PHP 4, PHP 5, PHP 7) Get field type string msql_field_type ( resource $result, int $field_offset ) msql_field_type() gets the type of the specified field index. Parameters: result The result resource that is being evaluated. This result comes from a call to msql_query(). field_offset The numerical field offset. The field_offset starts at

msql_field_table

(PHP 4, PHP 5, PHP 7) Get table name for field int msql_field_table ( resource $result, int $field_offset ) Returns the name of the table that the specified field is in. Parameters: result The result resource that is being evaluated. This result comes from a call to msql_query(). field_offset The numerical field offset. The field_offset st