On Jan 31, 2008, at 10:58 AM, polomasta wrote: > > Okay, new question.... > [snip] > > However, from the in place editor it is not updating the db nor is is > displaying the text I entered.. any ideas/suggestions? THANKS! >
Is your form handler (php) set to accept POST or GET? The IPE sends by POST, unless you configure it otherwise in the parameters. Try using the $_REQUEST superglobal in PHP which grabs GET and POST in one whack. Also, do you have Firebug enabled? That's the best way I have found to see what's going on in these XHR transactions. You can see the raw post, the responseText, even the headers sent. Finally, do you have your PHP script set to print or echo the results? Walter --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
