I have:
WebClient cl = new WebClient();
NameValueCollection nvm = new NameValueCollection();
nvm["name"] = data.Name;
nvm["description"] = data.Description;
nvm["file"] = // File.OpenRead(data.FilePath) ? or how send file content ?
cl.UploadValues("https://database.org/upload.php", "POST", nvm);
My question is: how to send file ? Using stream ? or how ?