Im working with a friend to recieve image uploads from his C# program to my php script. Hes sending the form data and image as an HTTP POST method.The text comes through fine, but when the image comes through, it doesnt show up in $_FILES, but in $_POST.when i print_r $_POST and he submits, he gets this...\[code\]Array( [dbto] => sometext [blurb] => somemoretextContent-Disposition: file; name="userfile"; filename="picture.png"Content-Type: IMAGE/PNG?PNG\[/code\]Then his app crashes. I read something about a possible bug in php when handling this kind of transaction, something about the way the data is being sent. Any ideas if this is a known issue or something i can do on my side?