I have to pass parameters using ajax.Updater to a php page. The post values to be passed contain characters like +,-,&,%,#.
I am encoding the parameters using encodeURIComponent before posting and decoding it using urldecode() in the php page.
I am unable to fetch the posted data in the php page. Please suggest how this can be handled.
Thank you
encodeURIComponentis the right function. You probably don't have to do any decoding in PHP. This should be done automatically.