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_field_flags

(PHP 4, PHP 5, PHP 7) Get field flags string msql_field_flags ( resource $result, int $field_offset ) msql_field_flags() returns the field flags of the specified field. 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 sta

msql_field_len

(PHP 4, PHP 5, PHP 7) Get field length int msql_field_len ( resource $result, int $field_offset ) msql_field_len() returns the length of the specified field. 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 1.

msql_fetch_field

(PHP 4, PHP 5, PHP 7) Get field information object msql_fetch_field ( resource $result [, int $field_offset = 0 ] ) msql_fetch_field() can be used in order to obtain information about fields in a certain query result. Parameters: result The result resource that is being evaluated. This result comes from a call to msql_query(). field_offset

msql_fetch_object

(PHP 4, PHP 5, PHP 7) Fetch row as object object msql_fetch_object ( resource $result ) msql_fetch_object() is similar to msql_fetch_array(), with one difference - an object is returned, instead of an array. Indirectly, that means that you can only access the data by the field names, and not by their offsets (numbers are illegal property names). Speed-wise, the function is identical to msql_fetch_array(), and almost as qui

msql_fetch_row

(PHP 4, PHP 5, PHP 7) Get row as enumerated array array msql_fetch_row ( resource $result ) msql_fetch_row() fetches one row of data from the result associated with the specified query identifier. The row is returned as an array. Each result column is stored in an array offset, starting at offset 0. Subsequent call to msql_fetch_row() would return the next row in the result set, or FALSE if there are no more rows.

msql_fetch_array

(PHP 4, PHP 5, PHP 7) Fetch row as array array msql_fetch_array ( resource $result [, int $result_type ] ) msql_fetch_array() is an extended version of msql_fetch_row(). In addition to storing the data in the numeric indices of the result array, it also stores the data in associative indices, using the field names as keys. An important thing to note is that using msql_fetch_array() is NOT significantly slower than using ms

msql_error

(PHP 4, PHP 5, PHP 7) Returns error message of last msql call string msql_error ( void ) msql_error() returns the last issued error by the mSQL server. Note that only the last error message is accessible with msql_error(). Returns: The last error message or an empty string if no error was issued.

msql_db_query

(PHP 4, PHP 5, PHP 7) Send mSQL query resource msql_db_query ( string $database, string $query [, resource $link_identifier ] ) msql_db_query() selects a database and executes a query on it. Parameters: database The name of the mSQL database. query The SQL query. link_identifier The mSQL connection. If