PHP Databases Handling To identify entries marked for deletion, you check whether $_GET[‘page’] == ‘delete’ inside __________ index.php .htaccess index.ini admin.php index.php .htaccess index.ini admin.php 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 database will remain unchanged 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 contents of OTHERTABLE will be deleted The database will remain unchanged 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 contents of OTHERTABLE will be deleted ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling SQL is not case sensitive. SELECT is the same as select. False True False True ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling When a user confirms that he wishes to delete an entry, that entry’s URL is passed to a function which removes the entry from the __________ database function.inc.php admin.php index.php database function.inc.php admin.php index.php ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling The ............. statement is used to delete a table. DEL TABLE DROP TABLE REMOVE TABLE DELETE TABLE DEL TABLE DROP TABLE REMOVE TABLE DELETE TABLE ANSWER DOWNLOAD EXAMIANS APP
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=php_mysqli.dl extension=mysqli.dl extension=php_mysqli.dll extension=mysql.dll extension=php_mysqli.dl extension=mysqli.dl extension=php_mysqli.dll extension=mysql.dll ANSWER DOWNLOAD EXAMIANS APP