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 In which version of PHP was MySQL Native Driver(also known as mysqlnd) introduced? PHP 5.1 PHP 5.0 PHP 5.3 PHP 5.2 PHP 5.1 PHP 5.0 PHP 5.3 PHP 5.2 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 OTHERTABLE 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 both OTHERTABLE and MYTABLE will be deleted The database will remain unchanged The contents of OTHERTABLE 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 both OTHERTABLE and MYTABLE will be deleted ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling To identify entries marked for deletion, you check whether $_GET[‘page’] == ‘delete’ inside __________ index.php index.ini .htaccess admin.php index.php index.ini .htaccess admin.php 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. $_SET[‘admin’]. $_GET[‘admin’]. $_GET[‘url’]. $_SET[‘url’]. $_SET[‘admin’]. $_GET[‘admin’]. $_GET[‘url’]. $_SET[‘url’]. ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following statements instantiates the mysqli class? mysqli->new.mysqli() $mysqli = new mysqli() mysqli = new mysqli() $mysqli->new.mysqli() mysqli->new.mysqli() $mysqli = new mysqli() mysqli = new mysqli() $mysqli->new.mysqli() ANSWER DOWNLOAD EXAMIANS APP