Answers for "warning: mysqli_select_db() expects exactly 2 parameters,1 given"

1

mysqli_select_db expects 2 parameters

//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);
Posted by: Guest on November-09-2020

Code answers related to "warning: mysqli_select_db() expects exactly 2 parameters,1 given"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language