mysql_select_db(database_name[,link_identifier])

Description: Selects a MySQL database.

mysql_select_db() sets database_name as the current active database to associate with link_identifier. If link_identifier is not given, it assumes the last opened MySQL connection.

Returns TRUE on success, or FALSE otherwise.

Example:

if (mysql_select_db ("products_db")) {
    echo "Connected to products!<BR>
";
}

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.226.165.247