douchuose2514 2014-11-03 23:25
浏览 203
已采纳

找不到类'mysqli_connect'

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

<?php
//Connect to the database 
$link = new mysqli_connect ("localhost", "root", "", "towertec_master"); 
if (mysqli_connect_errno()) 
{
printf("Connect failed: %s
", mysqli_connect_error());
exit();
}?>

And this is my main.php

<?php
include ("lib\dbcon.php");

// is a client logged in?
include("lib/login_check.php");

include("lib/fetch_org_data.php");
$thispage="main";   
?>

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
  • 写回答

2条回答 默认 最新

  • dongou3158 2014-11-03 23:27
    关注

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

    $link = mysqli_connect(...);
    

    or

    $link = new mysqli(...);
    

    Both are equivalent.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?