javascript - XDomainRequest post data not displaying -


i can't post data trough internet explorer xdomainrequest. nothing showing up..

i created fiddle

parim.ee/test.php prints out $_post , $_request variable so:

header('access-control-allow-origin: *', true); header("access-control-allow-headers: *", true);  echo "var_export(\$_post):\n"; var_export($_post);  echo "\n\n";  echo "var_export(\$_request):\n"; var_export($_request); 

found solution:

instead of using $_post have use $http_raw_post_data.


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -