hey guys, its me again!
code:
var url = "http://www.example.com";
var data = "var1=some%20data&var2=some%20more%20data";
Interop.Call("wininet.dll", "DeleteUrlCacheEntryW", url);
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("POST", url, true);
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlhttp.setRequestHeader("Content-length", data.length);
xmlhttp.setRequestHeader("Connection", "close");
[...]
how do i handle the vars here? is my stuff already saved in $var1, $var2 and $var3? i guess not because php doesnt know that variable... seems like ill have to use the GET array method allthough i took the post method. or is it saved in $_POST[t1] and so on?
excuse me for not understanding...