Fatal error: Call to undefined function mysqli_connect()

anthony1994

Newbie
Joined
Dec 17, 2010
Messages
9
Reaction score
1
I get the error message:
Code:
Fatal error: Call to undefined function mysqli_connect() in /home/reward/public_html/include/db/Db_connection.php on line 42

Basically, I edited a file called 'config.php' with the database information but for some reason it generates that error line.

Could anyone please help me out?

Would be greatly appreciated.
 
what exactly is in that 42nd line on db-connection.php? looks like it 's getting wrong db login, check again, maybe You made a typo or smthng.
 
Make sure you have the mysqli module installed and enabled.
Code:
extension=php_mysqli.dll

In php.ini
 
Make sure you have the mysqli module installed and enabled.
Code:
extension=php_mysqli.dll
In php.ini

yes or use mysql_connect() instead of mysqli_connect()
 
Back
Top