PHP Databases Handling The URLs in the administrative links won’t mean anything to admin.php unless you modify _________ .urlaccess .htmlaccess .adminaccess .htaccess .urlaccess .htmlaccess .adminaccess .htaccess ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods is responsible for sending the query to the database? query() sendquery() query_send() send_query() query() sendquery() query_send() send_query() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which of the following DBMSs do not have a native PHP extension? None of these MySQL Microsoft SQL Server IBM DB/2 PostgreSQL None of these MySQL Microsoft SQL Server IBM DB/2 PostgreSQL ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling SQL is not case sensitive. SELECT is the same as select. True False True False ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following lines need to be uncommented or added in the php.ini file so as to enable mysqli extension? extension=mysqli.dl extension=php_mysqli.dll extension=mysql.dll extension=php_mysqli.dl extension=mysqli.dl extension=php_mysqli.dll extension=mysql.dll extension=php_mysqli.dl 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 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 ANSWER DOWNLOAD EXAMIANS APP