"If you would like to install the mysql extension along with the mysqli extension you have to use the same client library to avoid any conflicts."
I find this confusing because I have two dll libraries installed on my Windows XAMP system:
(1) php_mysql.dll
(2) php_mysqli.dll
I seem to be able to use functions from both of these libraries, so I am confused as to what the PHP manual is saying.
Also, I was looking at a piece of code that has the following statement:
Code: Select all
$cnt=$db->get_var("select count(*) from categories_description");Thank you.