Ceriwis

Ceriwis (https://forum.ceriwis.com/forum.php)
-   Programming (https://forum.ceriwis.com/forumdisplay.php?f=63)
-   -   penting2 (https://forum.ceriwis.com/showthread.php?t=573727)

Servermaster 20th November 2011 02:13 AM

penting2
 

gan,, mau tanya maksud dari koding ini....

http://ceri.ws/smilies/request.gif





function CreateXMLHttpRequest()

{

var oAjax = false;



try

{

oAjax = new ActiveXObject("Msxml2.XMLHTTP");

}catch(e)

{

try

{

oAjax = new ActiveXObject("Microsoft.XMLHTTP");

}catch(e2)

{

oAjax = false;

}

}



if(!oAjax && typeof XMLHttpRequest !='undefined')

{

oAjax = new XMLHttpRequest();

}

return oAjax;

}



function GetList(jenis,idcbo,ltbl,where,selectnya,ordersql)

{



var oResponse = CreateXMLHttpRequest();

var url = "getlist.php?tbl="+ltbl+"&where="+where+"&wher e1=" +jenis+"&select="+selectnya+"&order="+ordersql;



oResponse.open("GET",url,true);



oResponse.onreadystatechange = function() {



if(oResponse.readyState ==4)

{

//alert(oResponse.responseText);

document.getElementById(idcbo).innerHTML = oResponse.responseText;

}

}

oResponse.send(null);

}



</div>


All times are GMT +7. The time now is 09:13 PM.