hello I'm a total noob in webprogramming and I found a code snippet which seems to post to a website it looks like this:
Func Post($data)
$sPD = $data
$oHTTP = ObjCreate("winhttp.winhttprequest.5.1")
$oHTTP.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded")
$oHTTP.Open("POST", "www.myserver.com/log", False)
$oHTTP.Send($sPD)
EndFunc
so what can I do to receive data or display it in a html page? or is it server side communication and I need to put a "log.php" file there? cz in the snippet it's "/log" and not "log.php" so what shall I write in the html script to receive or display this data sent by the autoit script? I know it's more like a webprogramming question but I hope somebody will help me anyways PLEASE