当我在表格中添加行:book use navicat时,出现了一个问题:
错误
字符串值不正确:' \ xE6 \ x8B \ x93 \ xE6 \ xB5 \ xB7'对于列' bookName'在第1行
为什么?
修改
我运行if( isset($_GET['VIN']) && $_GET['VIN'] != "" ){ // you can add others validations like string lenght or regex
$vin = $_GET['VIN'];
$query = "SELECT * FROM INVENTORY";
//...all your code...
}else{
// Do something when no VIN comes in the url
}
show create table book;
答案 0 :(得分:0)
您在表格中看到CHARSET=latin1
,您的图书表默认字符集为latin1
,您应该更改字符集。
alter table book default character set utf8;