我正在使用PHP并从我的系统向MySQL插入中文字符。我使用前缀N但我遇到了一些错误。这是我的代码。
$insert = "INSERT INTO BK (language, id, names) VALUES ('N':language'', ':id', 'N':names'')";
$stmtNew = $dbRemote->prepare($insert);
$stmtNew->bindValue(':language', $Val['Language']);
$stmtNewL->bindValue(':id', $ID);
$stmtNewL->bindValue(':names', $langVal['Name']);
$stmtNewL->execute();
可能是我的问题?