PHP Databases Handling
Which one of the following methods can be used to diagnose and display information about a MySQL connection error?

mysqli_connect_errno()
connect_errno()
mysqli_connect_error()
connect_error()

ANSWER DOWNLOAD EXAMIANS APP

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

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

ANSWER DOWNLOAD EXAMIANS APP