Which one of the following methods can be used to diagnose and display information about a MySQL connection error? mysqli_connect_error() connect_errno() connect_error() mysqli_connect_errno() TRUE ANSWER : ? YOUR ANSWER : ?
In PHP in order to access MySQL database you will use: sql_connect() function mysql-connect() function mysql_connect() function mysqlconnect() function TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is not an SQL aggregate function? SUM AVG MIN MAX CURRENT_DATE() TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following databases has PHP supported almost since the beginning? SQL+ Oracle Database MySQL SQL TRUE ANSWER : ? YOUR ANSWER : ?
Which method retrieves each row from the prepared statement result and assigns the fields to the bound results? fetch_row() row() get_row() fetch() TRUE ANSWER : ? YOUR ANSWER : ?
The URLs in the administrative links won’t mean anything to admin.php unless you modify _________ .htmlaccess .htaccess .urlaccess .adminaccess TRUE ANSWER : ? YOUR ANSWER : ?
([w-]+) will match ___________ one or more word characters and hypens one or more word characters and/or hypens one or more word characters one word characters TRUE ANSWER : ? YOUR ANSWER : ?
You need to check whether ______ is set, to determine whether you’re editing an entry or creating a new one. $_SET[‘admin’]. $_SET[‘url’]. $_GET[‘admin’]. $_GET[‘url’]. TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following statements should be used to include a file? #include ; include ‘filename’; @include ‘filename’; #include ‘filename’; TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following statements is used to create a table? 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); TRUE ANSWER : ? YOUR ANSWER : ?