FAQ |
Calendar |
![]() |
|
Programming Share, tanya jawab, saling bantu antar programmer dengan berbagai macam bahasa pemrograman. |
![]() |
|
Thread Tools |
#1
|
|||
|
|||
![]()
gan,, mau tanya maksud dari koding ini....
![]() 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+"&where1=" +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); } |
![]() |
|
|