35 lines
1022 B
Plaintext
35 lines
1022 B
Plaintext
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('orderTables');
|
|
|
|
|
|
let html = '<h3>Znalezieni użytkownicy:</h3><ul>';
|
|
|
|
data.forEach(user => {
|
|
html += `<li>${user.cena}</li>`;
|
|
});
|
|
html += '</ul>';
|
|
resultDiv.innerHTML = html;
|
|
})
|
|
.catch(error => {
|
|
console.error("Wystąpił błąd podczas pobierania danych:", error);
|
|
const resultDiv = document.getElementById('result');
|
|
resultDiv.innerHTML = '<p>Błąd podczas pobierania danych. Sprawdź konsolę.</p>';
|
|
});
|
|
}
|