Forum Moderators: coopster
It looks as though my ISP doesn't have mbstring installed. This is a problem because I make use of the mb_convert_encoding function in my scripts, like so...
mb_convert_encoding($string, 'UTF-8','ISO-8859-1');
and also vice versa.
So what I'd like to do is come up with some sort of a workaround. Trouble is, I don't really have a very good understanding of what is happening here in the conversion between charsets. I figure it probably should be a fairly easy funciton to emulate with a preg_replace or two, but I only have a vague idea of what actually needs to be replaced... If any of you are experts in this sort of thing and could give me a nudge in the right direction I'd be deeply appreciative. Thanks!