0

We are trying to add non-english chars to the site URL and inside text.

Currently php pages don't see Unicode 'get' arguments. The pages see the arguments as question marks, although we added <META http-equiv="Content-Type" content="text/html; charset=utf8">

See sample here.

Many thanks!

Cyril Gandon
  • 16,830
  • 14
  • 78
  • 122
  • Are thwe question marks coming from your database? exactly what characters/character-set are you trying to render? also, you can't have a URL that's non-ascii. see http://stackoverflow.com/questions/2504564/can-http-uris-have-non-ascii-characters – FatherStorm Feb 16 '11 at 13:07

1 Answers1

1

Output the strings trough utf8_encode();

powtac
  • 40,542
  • 28
  • 115
  • 170