Compare commits

...

2 Commits

Author SHA1 Message Date
james b89ee1e8b5 fifth commit 2024-05-21 10:05:17 +02:00
james a1fd1497a1 fourth commit 2024-05-21 09:54:31 +02:00
4 changed files with 6 additions and 26 deletions

View File

@ -1,14 +1,12 @@
//const url = "http://localhost/p20/get.php" const url = "http://localhost/dev/get.php"
const url = "http://qstack.pl:8080/z1/get.php" // const url = "http://qstack.pl:8080/z1/get.php"
let lista let lista
fetch(url) fetch(url)
.then(response => response.json()) .then(response => response.json())
.then(data => { .then(data => {
sortujSufiksy(data)
}); });
function sortujSufiksy(data) { function wyswietlSufiksy(data) {
data.forEach((element) => document.querySelector('#nieposortowane').innerHTML += `<li> ${JSON.stringify(element.osoby)} </li>`); data.forEach((element) => document.querySelector('#nieposortowane').innerHTML += `<li> ${JSON.stringify(element.osoby)} </li>`);
} }

View File

@ -11,7 +11,6 @@
<body> <body>
<h1>Sortowanie Sufiksów</h1> <h1>Sortowanie Sufiksów</h1>
<input type="text" id="slowo" placeholder="Podaj słowo">
<button onclick="sortujSufiksy()">Sortuj Sufiksy</button> <button onclick="sortujSufiksy()">Sortuj Sufiksy</button>
<h2>Nieposortowane Sufiksy</h2> <h2>Nieposortowane Sufiksy</h2>
<div class="pre" id="nieposortowane"></div> <div class="pre" id="nieposortowane"></div>

View File

@ -1,17 +0,0 @@
<?php
$dbhost = "qstack.pl";
$dbuser = "root";
$dbpass = "";
$dbname = "osoby";
$conn = mysqli_connect($dbhost, $dbuser, $dbpass, $dbname);
$ans = mysqli_query($conn, "SELECT * FROM osoby");
$json = array();
while ($row = mysqli_fetch_assoc($ans)) {
$json[] = $row;
}
echo json_encode($json);
?>

View File

@ -1,6 +1,6 @@
body { body {
font-family: Arial, sans-serif; font-family: Arial, sans-serif;
background-color: #f5f5f5; background-color: #f7f7f7f5;
color: #333; color: #333;
margin: 0; margin: 0;
padding: 20px; padding: 20px;