This forum is no longer open and is for reading/searching only.
Please use our new MachForm Community Forum instead.
MachForm Community Forums » MachForm 3
German "Umlaute" ä ö ü .... by element_title are not saved in database
Started 11 years ago by inthanet | 4 posts |
-
Posted 11 years ago # -
I guess I found the problem, will check again
Posted 11 years ago # -
Wie hast du es gelöst?
Posted 11 years ago # -
Setting the character set with SQL
Database Client charset: utf8
Table charset : utf8
Table colloction: utf8_general_ciAbhängig von der APIs, die Du zum connect zu MySQL benutzt, kannst du nachfogendes SQL statement nach dem connect versuchen:
// mysql
mysql_query("SET NAMES utf8");// mysqli
$mysqli->query("SET NAMES utf8");// PDO
$pdo = new PDO("mysql:host=localhost;dbname=world;charset=utf8", 'my_user', 'my_pass');Posted 11 years ago #
Reply
You must log in to post.