9951 explained code solutions for 126 technologies


curlMake x-www-form-urlencoded POST request


curl -X POST -F "var1=test" -F "var2=other" https://example.org/script.phpctrl + c
-X POST

set type of request to POST

-F "var1=test"

add first parameter to post

-F "var2=other"

add second parameter to post

example.org/script.php

example script to post data to