im trying to upload 2 vales to simple php form which looks like this:
<meta charset="UTF-8">
<form method="post">
<input type="text" name="id"/>
<textarea name="data"></textarea>
<input type="submit" name="add" value="go"/>
</form>
using only webclient i did some search on it, and found that this would work like this:
Dim data As New NameValueCollection()
data.Add("id", "7799")
data.Add("data", "content")
Dim client As New WebClient
client.UploadValues("http://mywebsite/upload.php", data)
but didnt work for me :/ any ideas what im missing?