I'm attempting to send a large amount of XML data to a PHP
script and I'm having a bit of trouble. When I trace() the data
that's being sent, I see all of the data, but when I check to see
what the PHP script received, it shows only the first 65535
characters. Everything after that is missing. I'm following the
advice of Joey Lott from his ActionScript 3.0 Cookbook, and I'm
using $GLOBALS['HTTP_RAW_POST_DATA'] in the PHP script to retrieve
the data sent to it.
Has anyone else run into this issue? What's the best
workaround?