mysql数据库中只能插入数字,不能插入中英文的解决办法

    $sql = "insert into info(字段1,字段2) value(‘$name','$english')";

解决办法:在中文英文变量中加上单引号就能够插入了。