pritaeas
Posting Prodigy
9,293 posts since Jul 2006
Reputation Points: 1,178
Solved Threads: 1,462
Skill Endorsements: 86
urls souldn't contain special chars - urlencode is the way to go, if you really have to do this.
Your textbox should work if everything is encoded to utf-8/unicode.
Place this at the head of your file:
header('Content-Type: text/html; charset=utf-8');
I assume you already have this:
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
Your DB is utf-8/unicode charset/collated
You may need to set various options manually - but this is surely overkill:
mysql_query('SET character_set_results=utf8');
mysql_query('SET names=utf8');
mysql_query('SET character_set_client=utf8');
mysql_query('SET character_set_connection=utf8');
mysql_query('SET character_set_results=utf8');
mysql_query('SET collation_connection=utf8_unicode_ci');
diafol
Keep Smiling
10,655 posts since Oct 2006
Reputation Points: 1,628
Solved Threads: 1,512
Skill Endorsements: 57
diafol
Keep Smiling
10,655 posts since Oct 2006
Reputation Points: 1,628
Solved Threads: 1,512
Skill Endorsements: 57
Question Answered as of 7 Months Ago by
diafol,
pritaeas
and
scaiferw