php - MySQL installation problem -


I'm working on Windows with Apache and PHP.

I have just installed MySQL, have configured it, and started it.

But when I walked

   

I do not see the mysql section, which means that I can not use the MySQL command in PHP code, okay?

Why is that?

Should I make a manual connection between MySQL / PHP / Apache?

You need to enable MySQL module or Mysqli module in PHP. Use your administrative console to find your php.ini or turn on one of them. Then they should see the highest distribution already includes MySQL support. If you have created it yourself, then you may need to compile it again with support (but this is not possible).

Cheers, Jacob


Comments