PHP Databases Handling The (|/) tells the server to match ___________ forward slash backward slash nothing either nothing or a forward slash forward slash backward slash nothing either nothing or a forward slash 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 __________ admin.php database function.inc.php index.php admin.php database function.inc.php index.php ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following databases has PHP supported almost since the beginning? SQL+ MySQL Oracle Database SQL SQL+ MySQL Oracle Database SQL ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods is responsible for sending the query to the database? query_send() query() sendquery() send_query() query_send() query() sendquery() send_query() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which of the following methods is used to execute the statement after the parameters have been bound? bind_result() bound_result() bind_param() bound_param() bind_result() bound_result() bind_param() bound_param() 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 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 ANSWER DOWNLOAD EXAMIANS APP