'use strict'; function lekerdolgozok() { var xhr = new XMLHttpRequest(); xhr.responseType = 'text'; xhr.open("POST", "php/lekerdolgozok.php", true); xhr.send(); xhr.onload = function() { if(xhr.readyState === xhr.DONE) { if(xhr.status === 200) { feltolt(xhr.responseText); } } } } function feltolt(data_r) { let lista = document.getElementById('lista'); let data = JSON.parse(data_r); for(let i=0; i ${data[i].nev} ${data[i].telepules} `; } } lekerdolgozok();