PHP Databases Handling Which one of the following statements should be used to include a file? #include ‘filename’; #include ; @include ‘filename’; include ‘filename’; #include ‘filename’; #include ; @include ‘filename’; include ‘filename’; ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling In which version of PHP was MySQL Native Driver(also known as mysqlnd) introduced? PHP 5.2 PHP 5.1 PHP 5.0 PHP 5.3 PHP 5.2 PHP 5.1 PHP 5.0 PHP 5.3 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’]. $_SET[‘admin’]. $_GET[‘url’]. $_SET[‘url’]. $_GET[‘admin’]. $_SET[‘admin’]. $_GET[‘url’]. $_SET[‘url’]. ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following statements is used to create a table? CREATE table_name (column_type column_name); CREATE table_name (column_name column_type); CREATE TABLE table_name (column_name column_type); CREATE TABLE table_name (column_type column_name); CREATE table_name (column_type column_name); CREATE table_name (column_name column_type); CREATE TABLE table_name (column_name column_type); CREATE TABLE table_name (column_type column_name); ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Use the .............. to delete the data inside the table, and not the table itself? REMOVE TABLE DROP TABLE TRUNCATE TABLE DELETE TABLE REMOVE TABLE DROP TABLE TRUNCATE TABLE DELETE TABLE ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which method rolls back the present transaction? back() rollback() undo() commit() back() rollback() undo() commit() ANSWER DOWNLOAD EXAMIANS APP