PHP Databases Handling The (|/) tells the server to match ___________ backward slash nothing forward slash either nothing or a forward slash backward slash nothing forward slash either nothing or a forward slash ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following method is used to retrieve the number of rows affected by an INSERT, UPDATE, or DELETE query? changed_rows() new_rows() num_rows() affected_rows() changed_rows() new_rows() num_rows() affected_rows() 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 The updated MySQL extension released with PHP 5 is typically referred to as. mysqly mysqli mysql MySQL mysqly mysqli mysql MySQL 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=php_mysqli.dll extension=mysql.dll extension=php_mysqli.dl extension=mysqli.dl extension=php_mysqli.dll extension=mysql.dll extension=php_mysqli.dl extension=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 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 The database will remain unchanged ANSWER DOWNLOAD EXAMIANS APP