Hi, i have this code below, and it doesn't seem to work properly for some strange reason
It doesn't seem to pass the variable of roomName back in...
any ideas??
Regards,
Martin
Computing Design And Services:
Code:
function getText(roomName){
alert("room " + roomName);
// Open PHP script for requests
http3.open('post', 'ajax.php?act=getText&roomName='+roomName);
http3.onreadystatechange = handleResponse3;
http3.send(null);
setInterval("getText()", 5000, roomName);
}
any ideas??
Regards,
Martin
Computing Design And Services: