KoolReport's Forum

Official Support Area, Q&As, Discussions, Suggestions and Bug reports.
Forum's Guidelines

DB Query Result and German Umlaute #193

Open Alfons Parovszky opened this topic on on Jan 16, 2018 - 2 comments

Alfons Parovszky commented on Jan 16, 2018

I am bullinf data for a report from MySQL DB (defining UTF8 in the connection settings) but I do not get the German Umlaute (äöüÄÖÜß) in the table / lables

Do you have a tip for me how to make this happen ...

Alfons Parovszky commented on Jan 16, 2018

Issue resolved by adding pipe custom function to do utf8 decoding

 ->pipe(new Custom(function($row){
        $row["txt"] = utf8_decode($row["txt"]);
        return $row;
    }))
KoolReport commented on Jan 16, 2018

That's awesome :)

Build Your Excellent Data Report

Let KoolReport help you to make great reports. It's free & open-source released under MIT license.

Download KoolReport View demo
None yet

None