const listOfUsers = []; function getData() { fetch('./php/get.php') .then(response => { return response.json(); }) .then(data => { // Dodaj pobrane dane do tablicy listOfUsers.push(...data); // Wyświetl dane w konsoli console.log("Lista użytkowników:", listOfUsers); // Wyświetl imiona na stronie const resultDiv = document.getElementById('ordersTable'); let html = '
Błąd podczas pobierania danych. Sprawdź konsolę.
'; }); }