PHP Databases Handling To identify entries marked for deletion, you check whether $_GET[‘page’] == ‘delete’ inside __________ .htaccess index.ini index.php admin.php .htaccess index.ini index.php 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 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 The database will remain unchanged 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() send_query() query() sendquery() query_send() send_query() query() 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 The (|/) tells the server to match ___________ forward slash nothing backward slash either nothing or a forward slash forward slash nothing backward slash either nothing or a forward slash ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling If there is no error, then what will the error() method return? TRUE 0 FALSE Empty String TRUE 0 FALSE Empty String ANSWER DOWNLOAD EXAMIANS APP