msql_numrows

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

msql_regcase

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

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

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

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

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