Quote:
Originally Posted by satlazone
Any other suggestions? :/
|
OK, well, it's clearly some kind of encoding issue. I found this in the php manual:
http://www.php.net/manual/en/language.types.string.php
Quote:
Given that PHP does not dictate a specific encoding for strings, one might wonder how string literals are encoded. For instance, is the string "?" equivalent to "\xE1" (ISO-8859-1), "\xC3\xA1" (UTF-8, C form), "\x61\xCC\x81" (UTF-8, D form) or any other possible representation? The answer is that string will be encoded in whatever fashion it is encoded in the script file.
|
So do you happen to know how your script files are encoded (like what your OS or editor default encoding is, I guess). And how do you have your vb configured?
Or I suppose we could take another guess and try utf8_encode().