There is an ExtJs store.
I want to send its data with POST method to PHP that will echo in a new window.
There is no problem getting the records and making string value readable by php.
I know I can simply send the data with GET method and window.open() function.
But is there a way to do it with POST?
Any ideas?
There is an ExtJs store. I want to send its data with POST method
Share
You cannot open a new window and send a POST to it. One workaround here would be to send an HTTP post back to the original page, and have that page return an ID of the record where the POST contents are stored; then, do a window.open(), passing that ID in the URL.