Abubakr Hamid

Results 2 comments of Abubakr Hamid

Hello Guys, For this tool to support fully UTF8 you need to add two lines only: In class Shuttle_DBConn_Mysql extends Shuttle_DBConn: function connect() { $this->connection = @mysql_connect($this->host, $this->username, $this->password); mysql_set_charset('utf8',$this->connection);...

@djabif Thanks for the tips: I modified your solution to cope with Angular 6+ web applications: Put the below code in the constructor of app.component.ts: `this.translate.onLangChange.subscribe((event) => {` `this.lang=event.lang;` `if...