When I click a button the below code sends me to the url witha long query string with all my variables.
Works great. However I want it to look tidy and want to send the variables via POST...
It just doesn't work. Makes no sense to me... I know the variables are ok as GET works fine.. Any ideas?
Code:
myButton.onRelease = function(){
getURL("[URL unfurl="true"]http://www.domian.com",[/URL] "_self", "GET");
}
Works great. However I want it to look tidy and want to send the variables via POST...
Code:
myButton.onRelease = function(){
getURL("[URL unfurl="true"]http://www.domian.com",[/URL] "_self", "POST");
}
It just doesn't work. Makes no sense to me... I know the variables are ok as GET works fine.. Any ideas?