c 2fc 2b 2b drop mime

Solutions on MaxInterview for c 2fc 2b 2b drop mime by the best coders in the world

showing results for - "c 2fc 2b 2b drop mime"
Elyes
03 Jul 2017
1 struct curl_httppost * post = NULL;
2 struct curl_httppost * last = NULL;
3 curl_formadd (& post, & last,
4              CURLFORM_COPYNAME, "nom",
5              CURLFORM_COPYCONTENTS, "daniel", CURLFORM_END);
6 curl_formadd (& post, & last,
7              CURLFORM_COPYNAME, "projet",
8              CURLFORM_COPYCONTENTS, "curl", CURLFORM_END);
9 curl_formadd (& post, & last,
10              CURLFORM_COPYNAME, "logotype-image",
11              CURLFORM_FILECONTENT, "curl.png", CURLFORM_END);
12 
13 / * Définissez les informations du formulaire * /
14 curl_easy_setopt (easyhandle, CURLOPT_HTTPPOST, poste);
15 
16 curl_easy_perform (easyhandle); / * postez loin! * /
17 
18 / * libérer à nouveau les données de la publication * /
19 curl_formfree (post);
20