use HTTP request to upload a file?

Is it possible to do?

Basically what i’m wanting is to get a file from my project to my web server, I however, have no idea what i’m doing with http requests.

You can see my tutorial on HTTP requests. I have written a GET request, what you need is POST, which is a little more different. Just different verbs.

You can either encode the file as binary, and send it as a string, and decode it on the web server, or directly send it via HTTP POST, both would work.