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


  1. inthanet
    Member


    Posted 10 years ago #
  2. inthanet
    Member

    I guess I found the problem, will check again

    Posted 10 years ago #
  3. semaf
    Member

    Wie hast du es gelöst?

    Posted 10 years ago #
  4. inthanet
    Member

    Setting the character set with SQL

    Database Client charset: utf8

    Table charset : utf8
    Table colloction: utf8_general_ci

    Abhä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 10 years ago #

RSS feed for this topic

Reply