aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/simplepost.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-19 12:30:12 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-19 12:30:12 +0000
commitfc5c9d8f179b8a4efafee9317779a78763c3d4eb (patch)
tree9e76e4fba9dbff95177ab89889292a8396ab5f2a /docs/examples/simplepost.c
parent72d57a8ee6e7c0e262694ee77f1efad2e8dfe893 (diff)
simplepost.c shows a simple POST ;-)
Diffstat (limited to 'docs/examples/simplepost.c')
-rw-r--r--docs/examples/simplepost.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/docs/examples/simplepost.c b/docs/examples/simplepost.c
new file mode 100644
index 000000000..57c1f61d7
--- /dev/null
+++ b/docs/examples/simplepost.c
@@ -0,0 +1,36 @@
+/*****************************************************************************
+ * _ _ ____ _
+ * Project ___| | | | _ \| |
+ * / __| | | | |_) | |
+ * | (__| |_| | _ <| |___
+ * \___|\___/|_| \_\_____|
+ *
+ * $Id$
+ */
+
+#include <stdio.h>
+#include <curl/curl.h>
+
+int main(void)
+{
+ CURL *curl;
+ CURLcode res;
+
+ char *postthis="moo mooo moo moo";
+
+ curl = curl_easy_init();
+ if(curl) {
+ curl_easy_setopt(curl, CURLOPT_URL, "http://posthere.com");
+ curl_easy_setopt(curl, CURLOPT_POSTFIELDS, postthis);
+
+ /* if we don't provide POSTFIELDSIZE, libcurl will strlen() by
+ itself */
+ curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, strlen(postthis));
+
+ res = curl_easy_perform(curl);
+
+ /* always cleanup */
+ curl_easy_cleanup(curl);
+ }
+ return 0;
+}