tags:

views:

20

answers:

1

can you send data using libcurl on forum or any other ways like TCP/IP API?

A: 
curl -d "param1=value1&param2=value2" http://site.com/forum

inspect the page source for form field names. With libcurl you would use With libcurl, you can build the form with curl_formadd().

Orbit