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’);

ANSWER DOWNLOAD EXAMIANS APP

PHP Databases Handling
When you are building administrative links you’ll need to accept two arguments, which of the following are they?

The current page and URL of the entry you are working with
URL of previous entry and URL of the entry you are working with
URL of previous entry and previous page
The current page and previous page

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_name column_type);
CREATE TABLE table_name (column_type column_name);
CREATE table_name (column_name column_type);

ANSWER DOWNLOAD EXAMIANS APP