PHP MySQL Database
- Which one of the following statements is used to create a table?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
CREATE TABLE table_name (column_name column_type);
- In which version of PHP was MySQL Native Driver(also known as mysqlnd) introduced?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
PHP required that MySQL client library be installed on the server from which PHP was communicating with MySQL, whether the MySQL server also happened to reside locally or elsewhere. PHP 5.3 removes this problem by introducing MySQL Native Driver.
- Which one of the following lines need to be uncommented or added in the php.ini file so as to enable mysqli extension?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
Also make sure that extension_dir directive points to the appropriate directory.
- The updated MySQL extension released with PHP 5 is typically referred to as..
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
The updated MySQL extension with PHP 5 is known as MySQL and typically referred to as mysqli.
- Which one of the following databases has PHP supported almost since the beginning?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
MySQL