PHP Databases Handling Which one of the following lines need to be uncommented or added in the php.ini file so as to enable mysqli extension? extension=mysqli.dl extension=mysql.dll extension=php_mysqli.dl extension=php_mysqli.dll extension=mysqli.dl extension=mysql.dll extension=php_mysqli.dl extension=php_mysqli.dll ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling ([w-]+) will match ___________ one or more word characters and/or hypens one word characters one or more word characters one or more word characters and hypens one or more word characters and/or hypens one word characters one or more word characters one or more word characters and hypens ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following statements can be used to select the database? $mysqli=select_db(‘databasename’); mysqli=select_db(‘databasename’); mysqli->select_db(‘databasename’); $mysqli->select_db(‘databasename’); $mysqli=select_db(‘databasename’); mysqli=select_db(‘databasename’); mysqli->select_db(‘databasename’); $mysqli->select_db(‘databasename’); ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which version of MySQL introduced the prepared statements? MySQL 4.2 MySQL 4.1 MySQL 4.0 MySQL 4.3 MySQL 4.2 MySQL 4.1 MySQL 4.0 MySQL 4.3 ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Your confirmation form submits your choice, via the _______ method, to ________ GET admin.php POST admin.php POST index.php GET index.php GET admin.php POST admin.php POST index.php GET index.php 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 table_name (column_type column_name); CREATE TABLE table_name (column_name column_type); 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); CREATE table_name (column_name column_type); ANSWER DOWNLOAD EXAMIANS APP