I am new in wordpress. I have an wordpress site where Admin can add post.But when he will add a post, a GET method submission should be also done to appspot http://jhal-muri.appspot.com/sendAll?emailId=emailid&mssg=msg .
How can I do that? I know that I have to change the add_post options in admin panel of wordpress But I don’t know how to do.
For WordPress
You can declare the form as
POST. Then, construct your URL string ashttp://jhal-muri.appspot.com/sendAll?emailId=emailid&mssg=msgwhereemailIdandmssgparameters will automatically becomeGET. The rest of theinputnames and values will becomePOST.Sample Code