Multiple choice php

In PHP 5, MySQL support is enabled by default:

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In PHP 5, MySQL support was NOT enabled by default. It had to be explicitly enabled in php.ini by uncommenting or adding extension=php_mysql.so (Unix) or extension=php_mysql.dll (Windows). This was a common source of confusion for beginners.