On 20 avr, 04:18, nimbus58 <[EMAIL PROTECTED]> wrote:
> Merci Christophe.
>
> I tried to send a full page to see if it would change something. (it
> did'nt!)


I encountered similar problem a couple months ago. You have two
solutions :

1. escaping your accented characters with HTML entities (using
htmlentities() in PHP), so 'é' will become '&eacute;' (Google "HTML
entities table" for more info.)

2. use XML and an encoding of UTF-8 (Rico is a good Prototype
extension to that solution). Also, you may want to use functions such
as PHP's htmlspecialchars() if you have characters like <, >, &, ' and
". But at least accented characters will be all right.


There might be some other solutions, but, personally, I also had
similar problems and chose the later solution as it also allow
multiple container updates (and more). But as Christophe said,
ISO-8859-1 is not a permanent solution.


Goog luck.

-yanick


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Spinoffs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to