After searching through most of this website i cant seem to find any problems like mine !
What i have currently achieved is getting data from a webpage. That is only the start though.
I now want to reverse this role and be able to post data to a given webpage. So basically when a button is pressed, i need a piece of code that sends some given text to a webpage. This is the code i currently have but all it seems to do is read the data what is already on the webpage.
Dim Input, SourceURL
Input = Testing1 'Given text
SourceURL = "http://webpage.com"
Set xml = CreateObject("msxml2.serverxmlhttp.6.0")
xml.open "PUT", SourceURL, False
xml.send
JoeTest2= xml.responsetext
Debug.Print JoeTest2 'Print to debug screen
All this seems to do is the same as my "GET" script ? If anyone could show me where i am going wrong, it would be extremely helpful :)