Does anyone have sample VBS code that sends a variable, waits response and repeat?
i have so far:
dim input
input = Inputbox ("Enter Var:" ,"Var sender...")
SourceURL = "http://example.com/someFunction.php?var="&input&""
that’s it… my other code is not functional…
thanks in advance, hope anyone can help, totally lost in vbs… in windows in general…
Assuming that this is Windows Script Host, you can use the
MSXML2library.if you’re modifying things on the server, you should probably use a POST request instead of a GET request, but this should work if your server side script only accepts GET requests