tabs
This commit is contained in:
parent
82bf8e4193
commit
72452e9a3a
34
1
34
1
@ -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>';
|
|
||||||
});
|
|
||||||
}
|
|
@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?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");
|
$kwerenda = mysqli_query($polaczenie, "SELECT * FROM zamowienia1 ORDER BY id ASC");
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
$dbhost="192.168.94.71";
|
$dbhost="192.168.175.71";
|
||||||
//$dbhost="172.18.0.2";
|
//$dbhost="172.18.0.2";
|
||||||
$dbuser="root";
|
$dbuser="root";
|
||||||
$dbpass="secret";
|
$dbpass="secret";
|
||||||
|
Loading…
Reference in New Issue
Block a user