Lines Matching refs:form
29 * "HTML form based" (as described in RFC 1738) uploads using HTTP POST.
31 * The imaginary form we will fill in looks like:
33 * <form method="post" enctype="multipart/form-data" action="examplepost.cgi">
37 * </form>
51 curl_mime *form = NULL;
60 /* Create the form */
61 form = curl_mime_init(curl);
64 field = curl_mime_addpart(form);
69 field = curl_mime_addpart(form);
74 field = curl_mime_addpart(form);
86 curl_easy_setopt(curl, CURLOPT_MIMEPOST, form);
98 /* then cleanup the form */
99 curl_mime_free(form);