PHP Databases Handling In which version of PHP was MySQL Native Driver(also known as mysqlnd) introduced? PHP 5.3 PHP 5.2 PHP 5.1 PHP 5.0 PHP 5.3 PHP 5.2 PHP 5.1 PHP 5.0 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 both OTHERTABLE and MYTABLE 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 OTHERTABLE will be deleted The database will remain unchanged The contents of both OTHERTABLE and MYTABLE 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
PHP Databases Handling Which one of the following statements should be used to include a file? include ‘filename’; @include ‘filename’; #include ; #include ‘filename’; include ‘filename’; @include ‘filename’; #include ; #include ‘filename’; ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Your confirmation form submits your choice, via the _______ method, to ________ POST index.php GET admin.php GET index.php POST admin.php POST index.php GET admin.php GET index.php POST admin.php ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following methods can be used to diagnose and display information about a MySQL connection error? connect_error() mysqli_connect_error() mysqli_connect_errno() connect_errno() connect_error() mysqli_connect_error() mysqli_connect_errno() connect_errno() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which of the following methods is used to execute the statement after the parameters have been bound? bound_param() bind_result() bind_param() bound_result() bound_param() bind_result() bind_param() bound_result() ANSWER DOWNLOAD EXAMIANS APP