1 /*****************************************************************************
3 * Project ___| | | | _ \| |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
8 * $Id: http-post.c,v 1.1.1.1 2008-09-23 16:32:05 hoffman Exp $
12 #include <curl/curl.h>
19 curl
= curl_easy_init();
21 /* First set the URL that is about to receive our POST. This URL can
22 just as well be a https:// URL if that is what should receive the
24 curl_easy_setopt(curl
, CURLOPT_URL
, "http://postit.example.com/moo.cgi");
25 /* Now specify the POST data */
26 curl_easy_setopt(curl
, CURLOPT_POSTFIELDS
, "name=daniel&project=curl");
28 /* Perform the request, res will get the return code */
29 res
= curl_easy_perform(curl
);
32 curl_easy_cleanup(curl
);