PHP Databases Handling Which of the following DBMSs do not have a native PHP extension? Microsoft SQL Server None of these MySQL PostgreSQL IBM DB/2 Microsoft SQL Server None of these MySQL PostgreSQL IBM DB/2 ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling You need to check whether ______ is set, to determine whether you’re editing an entry or creating a new one. $_GET[‘admin’]. $_GET[‘url’]. $_SET[‘url’]. $_SET[‘admin’]. $_GET[‘admin’]. $_GET[‘url’]. $_SET[‘url’]. $_SET[‘admin’]. ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Your confirmation form submits your choice, via the _______ method, to ________ POST index.php GET admin.php POST admin.php GET index.php POST index.php GET admin.php POST admin.php GET index.php ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling The (|/) tells the server to match ___________ forward slash backward slash either nothing or a forward slash nothing forward slash backward slash either nothing or a forward slash nothing ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling The ............. statement is used to delete a table. REMOVE TABLE DELETE TABLE DROP TABLE DEL TABLE REMOVE TABLE DELETE TABLE DROP TABLE DEL TABLE 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 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 both OTHERTABLE and MYTABLE will be deleted The contents of OTHERTABLE 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 both OTHERTABLE and MYTABLE will be deleted ANSWER DOWNLOAD EXAMIANS APP