03.07.2012, 12:45
Hello guys 
I have one problem with UTF-8 in PHP, in database is "Oљ gujce?" but when I echo it on page it says "oЕЎ ti gujce?"
what should I do?
I put this on top:
but nothing...

I have one problem with UTF-8 in PHP, in database is "Oљ gujce?" but when I echo it on page it says "oЕЎ ti gujce?"
what should I do?
I put this on top:
PHP код:
mb_internal_encoding('UTF-8');
mb_http_output('UTF-8');
mb_http_input('UTF-8');
mb_language('uni');
mb_regex_encoding('UTF-8');
ob_start('mb_output_handler');