Class 'mysqli_connect' not found

前端 未结 2 460
眼角桃花
眼角桃花 2020-12-30 17:24

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 adv

2条回答
  •  再見小時候
    2020-12-30 17:49

    You should do :

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

提交回复
热议问题