I\'m trying to store some data in a SQL Server database through php.
Problem is that special chars aren\'t converted properly. My app\'s charset is iso-8859-1 and th
I had the same problem and ini_set('mssql.charset', 'utf-8') did not work for me. However, it worked in uppercase:
ini_set('mssql.charset', 'utf-8')
ini_set('mssql.charset', 'UTF-8');