On Aug 23, 2007, at 2:35 PM, [EMAIL PROTECTED] wrote:
> I use Ajax.Request, and in some params i have this character: # > > With v1.5.0_rc1 i have no problems. i receive the params in php same > that i sended in javascript, but in this new version, when find this > character, it cuts the string and i don't receive the same param that > i sended. From your description, it sounds like you're building your query string by hand ... and not properly URL-encoding the '#' character. (Recall '#' is used for page anchors.) Newer version of Prototype allow you to pass a Hash/Object in to the request's parameters option. Doing it that way would save you from having to do the encoding yourself. TAG --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
