PHP Databases Handling
In PHP in order to access MySQL database you will use:

mysql_connect() function
mysqlconnect() function
sql_connect() function
mysql-connect() function

ANSWER DOWNLOAD EXAMIANS APP

PHP Databases Handling
Which one of the following statements is used to create a table?

CREATE table_name (column_type column_name);
CREATE table_name (column_name column_type);
CREATE TABLE table_name (column_name column_type);
CREATE TABLE table_name (column_type column_name);

ANSWER DOWNLOAD EXAMIANS APP