Nur der Vollständigkeit halber, so müsste es aussehen:
PHP-Code:
function fncRequest(ip,port,timeout)
{
if (xmlHttp) {
xmlHttp.open('POST','sources/request.php',false);
xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xmlHttp.send('ip='+ip+'&port='+port+'&timeout='+timeout);
return xmlHttp.responseText;
}
return 0;
}
nach "send" geht es erst weiter, wenn send "fertig" ist...
Kommentar