msql_field_seek

(PHP 4, PHP 5, PHP 7) Set field offset bool msql_field_seek ( resource $result, 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. Parameters: result The result resource that is being evaluated. This result comes from a call to msql_query(). field_

msql_field_name

(PHP 4, PHP 5, PHP 7) Get the name of the specified field in a result string msql_field_name ( resource $result, int $field_offset ) msql_field_name() gets the name 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 of

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_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_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_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_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_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_drop_db

(PHP 4, PHP 5, PHP 7) Drop (delete) mSQL database bool msql_drop_db ( string $database_name [, resource $link_identifier ] ) msql_drop_db() attempts to drop (remove) a database from the mSQL server. Parameters: database_name The name of the database. link_identifier The mSQL connection. If not specified, the last link opened by msql_conn