Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My Url Change to Seo Friendly using this function + .htaccess . My Project Is in ARABIC Language !

function clean($title) {

$seo_st = str_replace(' ', '-', $title);
$seo_alm = str_replace('--', '-', $seo_st);
$title_seo = strtolower(str_replace(' ', '', $seo_alm));

return $title_seo;}

now in my url I see This :

localhost/news/4/�����-��-����-�����-��-����/

What's Problem ?

Thanks

share|improve this question

3 Answers

Try this in your code before doing anything else and tell me if it works:

mb_internal_encoding("UTF-8");
mb_regex_encoding("UTF-8");
share|improve this answer
Already on config file. I put all UTF-8 Code in My Config File. But I Dont Know What's Problem. – user1086738 Dec 20 '11 at 8:56

Try this...

$dbconnect = @mysql_connect($server,$db_username,$db_password);
$charset = @mysql_set_charset('utf8',$dbconnect);


<head>
    <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> 
</head> 
share|improve this answer

Check if your database field collation is properly set to UTF-8, and that your connection is UTF-8 SET NAMES "utf8".

If you're using any characters from values in your scripts, make sure they're UTF-8 as well.

share|improve this answer
in my config : mysql_query("SET NAMES 'utf8'"); And My collation : utf8_persian_ci – user1086738 Dec 20 '11 at 0:25
Debug your chain then, find out when the characters become corrupt. – Frits van Campen Dec 20 '11 at 0:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.