Search Results

3
votes

UTF-8 all the way through…

I'd like to add one thing to chazomaticus' excellent answer: Don't forget the META tag either (like …
1
vote

Check the language of string based on glyphs in PHP

This should do it: preg_match("/\p{Arabic}/u", $item['item_title']) You could make that regular expression a bit more sophisticated if you want to, but I don't thi …
3
votes

MySQL UTF Text Capacity

You could turn it into a varchar instead. The length of a varchar is limited to the number of characters you specify. The length of a tinytext field …