I wish to upload from my Flash Application (AS3) to imageshacks XML API. I wish to know how I can do this.
\"In Flash, we must POST the data using the UrlRequest and
Just my 2 cents to all those who're here to find a php implementation of upload.php. If you have tried HTTP_RAW_POST_DATA and it hasn't worked, try file_get_contents("php://input");
it has worked for me
$data = file_get_contents("php://input"); file_put_contents("filename",$data);