Please sample code that sends files to the server from a form
Multipart / form-data
CURL
I apologize for my English
PB + CURL Sending a file to the server
- fiver
- User
- Posts: 36
- Joined: Wed May 05, 2004 8:21 pm
- Location: An outer spiral arm of the Milky Way
Re: PB + CURL Sending a file to the server
Use the search Luke!!
Recent post with a libcurl wrapper
Progi1984's original curl wrapper:
http://goo.gl/zdXmi
Or do it without the extra bulk of curl
:
Drag and drop Image uploader
Look particularly at HttpPostMultipart.
Recent post with a libcurl wrapper
Progi1984's original curl wrapper:
http://goo.gl/zdXmi
Or do it without the extra bulk of curl

Drag and drop Image uploader
Look particularly at HttpPostMultipart.
Re: PB + CURL Sending a file to the server
Code: Select all
curl_formadd(@formpost, @last_post, #CURLFORM_COPYNAME, @"CMD", #CURLFORM_COPYCONTENTS, @"AUTH", #CURLFORM_END);
HELP!!!