_____________ selects mysqldatabase.
-
mysql_select_database
-
mysql_select_db
-
mysql_connect_db
-
mysql_database
B
Correct answer
Explanation
mysql_select_db is the deprecated PHP MySQL function that selects the active database for subsequent queries. After connecting to MySQL with mysql_connect, you must select a specific database before running queries. Option A is a common but incorrect variation of the function name.