PHP Databases Handling To identify entries marked for deletion, you check whether $_GET[‘page’] == ‘delete’ inside __________ index.php index.ini admin.php .htaccess index.php index.ini admin.php .htaccess ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which version of MySQL introduced the prepared statements? MySQL 4.0 MySQL 4.2 MySQL 4.3 MySQL 4.1 MySQL 4.0 MySQL 4.2 MySQL 4.3 MySQL 4.1 ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Once your application can generate administrative links, you need to load those links into _________ start.php php.ini index.ini index.php start.php php.ini index.ini index.php ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which of the methods are used to manage result sets using both associative and indexed arrays? get_array() and get_row() fetch_array() and fetch_column() fetch_array() and fetch_row() get_array() and get_column() get_array() and get_row() fetch_array() and fetch_column() fetch_array() and fetch_row() get_array() and get_column() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods is responsible for sending the query to the database? sendquery() query() send_query() query_send() sendquery() query() send_query() query_send() 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 OTHERTABLE will be deleted The contents of both OTHERTABLE and MYTABLE will be deleted The contents of OTHERTABLE will be deleted, as will be all the contents of MYTABLE whose ID is 1 The database will remain unchanged The contents of OTHERTABLE will be deleted The contents of both OTHERTABLE and MYTABLE will be deleted The contents of OTHERTABLE will be deleted, as will be all the contents of MYTABLE whose ID is 1 The database will remain unchanged ANSWER DOWNLOAD EXAMIANS APP