PHP Databases Handling The URLs in the administrative links won’t mean anything to admin.php unless you modify _________ .adminaccess .urlaccess .htmlaccess .htaccess .adminaccess .urlaccess .htmlaccess .htaccess ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which method returns the error code generated from the execution of the last MySQL function? errnumber() errorno() errno() errornumber() errnumber() errorno() errno() errornumber() 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 What will happen at the end of the following sequence of SQL commands?BEGIN TRANSACTIONDELETE FROM MYTABLE WHERE ID=1DELETE FROM OTHERTABLEROLLBACK TRANSACTION The contents of both OTHERTABLE and MYTABLE will be deleted The database will remain unchanged The contents of OTHERTABLE will be deleted, as will be all the contents of MYTABLE whose ID is 1 The contents of OTHERTABLE will be deleted The contents of both OTHERTABLE and MYTABLE will be deleted The database will remain unchanged The contents of OTHERTABLE will be deleted, as will be all the contents of MYTABLE whose ID is 1 The contents of OTHERTABLE will be deleted 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() fetch_array() and fetch_row() get_array() and get_row() fetch_array() and fetch_column() get_array() and get_column() fetch_array() and fetch_row() get_array() and get_row() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Use the .............. to delete the data inside the table, and not the table itself? DROP TABLE TRUNCATE TABLE REMOVE TABLE DELETE TABLE DROP TABLE TRUNCATE TABLE REMOVE TABLE DELETE TABLE ANSWER DOWNLOAD EXAMIANS APP