PHP Databases Handling Which one of the following statements instantiates the mysqli class? $mysqli = new mysqli() mysqli = new mysqli() $mysqli->new.mysqli() mysqli->new.mysqli() $mysqli = new mysqli() mysqli = new mysqli() $mysqli->new.mysqli() mysqli->new.mysqli() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling You need to check whether ______ is set, to determine whether you’re editing an entry or creating a new one. $_GET[‘url’]. $_SET[‘url’]. $_SET[‘admin’]. $_GET[‘admin’]. $_GET[‘url’]. $_SET[‘url’]. $_SET[‘admin’]. $_GET[‘admin’]. ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Once your application can generate administrative links, you need to load those links into _________ php.ini index.ini index.php start.php php.ini index.ini index.php start.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_name (column_name column_type); CREATE TABLE table_name (column_name column_type); CREATE TABLE table_name (column_type column_name); 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
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 of the methods are used to manage result sets using both associative and indexed arrays? fetch_array() and fetch_column() get_array() and get_column() get_array() and get_row() fetch_array() and fetch_row() fetch_array() and fetch_column() get_array() and get_column() get_array() and get_row() fetch_array() and fetch_row() ANSWER DOWNLOAD EXAMIANS APP