diff --git a/1 b/1 deleted file mode 100644 index 6abbf5f..0000000 --- a/1 +++ /dev/null @@ -1,34 +0,0 @@ -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 = '
Błąd podczas pobierania danych. Sprawdź konsolę.
'; - }); -} diff --git a/php/get.php b/php/get.php index c85b633..a4714e0 100644 --- a/php/get.php +++ b/php/get.php @@ -1,5 +1,5 @@