msql_select_db

(PHP 4, PHP 5, PHP 7) Select mSQL database bool msql_select_db ( string $database_name [, resource $link_identifier ] ) msql_select_db() sets the current active database on the server that's associated with the specified link_identifier. Subsequent calls to msql_query() will be made on the active database. Parameters: database_name The database name.

msql_result

(PHP 4, PHP 5, PHP 7) Get result data string msql_result ( resource $result, int $row [, mixed $field ] ) msql_result() returns the contents of one cell from a mSQL result set. When working on large result sets, you should consider using one of the functions that fetch an entire row (specified below). As these functions return the contents of multiple cells in one function call, they are often much quicker than msql_result

msql_regcase

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

msql_query

(PHP 4, PHP 5, PHP 7) Send mSQL query resource msql_query ( string $query [, resource $link_identifier ] ) msql_query() sends a query to the currently active database on the server that's associated with the specified link identifier. Parameters: query The SQL query. link_identifier The mSQL connection. If not specified, the last link op

msql_pconnect

(PHP 4, PHP 5, PHP 7) Open persistent mSQL connection resource msql_pconnect ([ string $hostname ] ) msql_pconnect() acts very much like msql_connect() with two major differences. First, when connecting, the function would first try to find a (persistent) link that's already open with the same host. If one is found, an identifier for it will be returned instead of opening a new connection. Second, the connection to the S

msql_numrows

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

msql_numfields

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

msql_num_rows

(PHP 4, PHP 5, PHP 7) Get number of rows in result int msql_num_rows ( resource $query_identifier ) msql_num_rows() returns the number of rows in a result set. Parameters: result The result resource that is being evaluated. This result comes from a call to msql_query(). Returns: Returns the number of rows in the result set.

msql_num_fields

(PHP 4, PHP 5, PHP 7) Get number of fields in result int msql_num_fields ( resource $result ) msql_num_fields() returns the number of fields in a result set. Parameters: result The result resource that is being evaluated. This result comes from a call to msql_query(). Returns: Returns the number of fields in the result set.

msql_list_tables

(PHP 4, PHP 5, PHP 7) List tables in an mSQL database resource msql_list_tables ( string $database [, resource $link_identifier ] ) msql_list_tables() lists the tables on the specified database. Parameters: database The name of the database. link_identifier The mSQL connection. If not specified, the last link opened by msql_connect() is