MSSQL - encoding

Hi,

In polish language We have special characters like óżźćł.
My scheduler is connected to the MSSQL database.
Database work on SQL_Latin1_General_CP850_CI_AS collocation.

In base_connector.php in $encoding variable I set “latin2”.

Scheduler displays polish characters properly, when they have been added directly in database
When I try add new event to database schedular insert data to database with incorrect coding (like this AlLLLsÄ╬).

Hi,
try setting the encoding for the sql connection
stackoverflow.com/questions/1322 … connection

Also, maybe it’s related to the html page encoding,
try specifying encoding in meta charset attribute
w3schools.com/html/html_charset.asp

The more generic solution would be to use utf8 both on the client and server if it’s possible