The problem of error reporting when php connects to mysql

error message

clipboard.png


clipboard.png

Mar.24,2021

has been resolved because the version of mysqli statement after php5 needs to keep up with the database
mysqli_set_charset ($link,'utf8');


mysqli_set_charset requires two parameters, but you write one

mysqli_set_charset('utf-8');
Menu