So I'm converting UTF-8 characters into their numeric entities (e.g. ñ = ñ).
The problem is that if the user enters a character that gets converted to an entity, the string might end up being longer than the field definition in the table allows.
For example, if I have a varchar(5) column and try to insert "señor" (which has been converted to "senñor"), I get "sen&#" in the table which is useless.
Has anyone dealt with this and if so how?
Thanks in advance for any advice, or pointers to any code that deals with this.
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php