PHP Databases Handling Your confirmation form submits your choice, via the _______ method, to ________ GET index.php GET admin.php POST index.php POST admin.php GET index.php GET admin.php POST index.php POST admin.php ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling If there is no error, then what will the error() method return? FALSE TRUE Empty String 0 FALSE TRUE Empty String 0 ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling To identify entries marked for deletion, you check whether $_GET[‘page’] == ‘delete’ inside __________ admin.php index.ini index.php .htaccess admin.php index.ini index.php .htaccess ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods recuperates any memory consumed by a result set? destroy() remover() free() alloc() destroy() remover() free() alloc() 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