I am attempting to post an image to imageshack.us and have found a php curl script that works perfectly, except that the script is written to target a file on the file system. I already have the image data in a php variable, so having to write it to a file just to have curl read it in and do the post seems silly.
I'm just wondering if I can get curl to achieve the same end result, by passing it the image data myself?
Here's how it's currently doing it:
$post['fileupload'] = "@".$filename;
...
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
...
curl_getinfo()can be used to get at least the header info (see CURLINFO_HEADER_OUT). But to get the entire request, I think you'll have to go Ignacio's route. – Crontab Mar 16 '12 at 15:35