sfactor
sfactor

Reputation: 13062

Sending data to a web site over HTTP

i have a program that receives data from a wireless device over bluetooth...i now need to do some operations in the data and then send it to the website (web server!!!) as a .csv file...i also need to authenticate the device itself from it hardware address which is also obtained in the program.i am coding this in gcc linux compiler using C...can anyone tell me how do i go about doing this?

Upvotes: 0

Views: 73

Answers (1)

jemfinch
jemfinch

Reputation: 2889

You should look into the LibCurl library. It handles uploading via HTTP and a number of other protocols.

Upvotes: 1

Related Questions