Hey, I am creating a project that writes to a file. The problem is that I don't want it to write to a file on my computer but to a file on my server.
I am using this
ofstream myfile ("www.myurl.com/test.txt");
What I want to do is open that file on my server so then I can write things into it using c++
yet nothing is happening? Please help me :(
-- using Dev c++