Getting a warning message mysqli_query expects parameter 1 to be mysqli, null given

前端 未结 2 756
庸人自扰
庸人自扰 2021-01-27 19:51

I keep getting this error from my code

Warning: mysqli_query() expects parameter 1 to be mysqli, null given in C:\\xampp\\htdocs\\citizenssuites\\site\\pages\\re         


        
2条回答
  •  孤街浪徒
    2021-01-27 20:25

    You didn't call mysqli_connect first, or it failed. Set $connection to a valid connection first:

    mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
    $connection = mysqli_connect("hostname", "username", "password");
    $result = mysqli_query($connection, ...);
    

提交回复
热议问题