From: John Haugabook Date: Sat, 16 Sep 2023 00:36:21 +0000 (-0400) Subject: MANUAL.md: change domain to example.com X-Git-Tag: curl-8_4_0~189 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9764bfc368b620009a0e0fdca31dcdd88ecdc765;p=thirdparty%2Fcurl.git MANUAL.md: change domain to example.com Closes #11866 --- diff --git a/docs/MANUAL.md b/docs/MANUAL.md index 9c1b291f05..dbdba8a156 100644 --- a/docs/MANUAL.md +++ b/docs/MANUAL.md @@ -323,23 +323,22 @@ of the letter's ASCII code. Example: -(page located at `http://www.formpost.com/getthis/`) +(say if `http://example.com` had the following html) ```html
- - - - + + + +
``` We want to enter user `foobar` with password `12345`. -To post to this, you enter a curl command line like: +To post to this, you would enter a curl command line like: - curl -d "user=foobar&pass=12345&id=blablabla&ding=submit" - http://www.formpost.com/getthis/post.cgi + curl -d "user=foobar&pass=12345&id=blablabla&ding=submit" http://example.com/post.cgi While `-d` uses the application/x-www-form-urlencoded mime-type, generally understood by CGI's and similar, curl also supports the more capable