📌  相关文章
📜  mysqli_select_db 需要 2 个参数 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:25.198000             🧑  作者: Mango

代码示例1
//do the correction as below:

$conn = mysqli_connect('localhost', 'root', '');
//the first thing that you have to pass connection variable in the select_db as first parameter. as below.

mysqli_select_db($conn,'altislife-dev');
//also you have to pass connection variable in mysqli_query() as first parameter as given below.

$records=mysqli_query($conn,$sql);