Class 'mysqli_connect' not found

匿名 (未验证) 提交于 2019-12-03 01:47:02

问题:

Okay so this is my problem now. I am using PHP 5.5.12 and MySQL 5.6.17. The php mysqli_connect is checked on my php settings but still getting error. ANy help? Thanks in advance.

Here is my dbcon.php

And this is my main.php

This is the error message:

Fatal error: Class 'mysqli_connect' not found in C:\wamp\www\Trading\lib\dbcon.php on line 3 Call Stack #   Time    Memory  Function    Location 1   0.0014  244472  {main}( )   ..\main.php:0 2   0.0023  247912  include( 'C:\wamp\www\Trading\lib\dbcon.php' )  ..\main.php:2 

回答1:

mysqli_connect is a function, not a class. What you want is either:

$link = mysqli_connect(...); 

or

$link = new mysqli(...); 

Both are equivalent.



回答2:

You should do :

$link = mysqli_connect ("localhost", "root", "", "towertec_master"); // without new 


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!