| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | function onClick() {     var xhr = new XMLHttpRequest();     xhr.open('GET', 'module1.php?id=4598', true);     xhr.send();     if (xhr.status != '200') {         alert(`Error ${xhr.status} : ${xhr.statusText}`);     } else {         let oLabel1 = document.getElementById("label1");         oLabel1.innerText = xhr.responseText;     } } | 
 
	