This commit is contained in:
mpabi 2025-03-13 14:37:42 +01:00
parent 82bf8e4193
commit 72452e9a3a
3 changed files with 2 additions and 36 deletions

34
1
View File

@ -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 = '<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>';
});
}

View File

@ -1,5 +1,5 @@
<?php
$polaczenie = mysqli_connect("192.168.94.71", "root", "secret", "db");
$polaczenie = mysqli_connect("192.168.175.71", "root", "secret", "db");
$kwerenda = mysqli_query($polaczenie, "SELECT * FROM zamowienia1 ORDER BY id ASC");

View File

@ -1,6 +1,6 @@
<?php
$dbhost="192.168.94.71";
$dbhost="192.168.175.71";
//$dbhost="172.18.0.2";
$dbuser="root";
$dbpass="secret";