Call to undefined function mysqli()

后端 未结 1 1180
遥遥无期
遥遥无期 2021-01-23 01:35

The issue occurs with this code



        
相关标签:
1条回答
  • 2021-01-23 02:12

    The error message is crystal clear: there is no such function in PHP and never has been. There is only a function called mysqli_connect() and class called mysqli. But classes are not functions and have different syntax to handle

    It means that, according to the error message, somewhere in the /var/www/html/actions/create_account.php on line 29 there is an improper call to mysqli

    0 讨论(0)
提交回复
热议问题