Compare commits
15 Commits
3594287422
...
5f5c9affe6
Author | SHA1 | Date |
---|---|---|
james | 5f5c9affe6 | |
u1 | 3cc3e92d8b | |
u1 | d7505f59d3 | |
Twoje Imię Nazwisko | edff1c9ebd | |
piotrb | 65c5b61829 | |
piotrb | bdda7e717f | |
piotrb | e527916149 | |
piotrb | 24dc33d4cf | |
piotrb | 2ac625d825 | |
james | c225a7d197 | |
james | d08593c413 | |
pawel | 817002a439 | |
pawel | d8a7ad5383 | |
pawel | 0cf2d32d88 | |
piotrb | 433fcc4754 |
23
fetch.js
23
fetch.js
|
@ -1,21 +1,14 @@
|
||||||
const url = "http://localhost/p20/get.php"
|
//const url = "http://localhost/p20/get.php"
|
||||||
|
const url = "http://qstack.pl:8080/z1/get.php"
|
||||||
|
let lista
|
||||||
|
|
||||||
fetch(url)
|
fetch(url)
|
||||||
.then(response => response.json())
|
.then(response => response.json())
|
||||||
.then(data => {
|
.then(data => {
|
||||||
console.log(data)
|
sortujSufiksy(data)
|
||||||
})
|
});
|
||||||
|
|
||||||
function sortujSufiksy() {
|
function sortujSufiksy(data) {
|
||||||
const slowo = document.getElementById('slowo').value;
|
|
||||||
const sufiksy = [];
|
data.forEach((element) => document.querySelector('#nieposortowane').innerHTML += `<li> ${JSON.stringify(element.osoby)} </li>`);
|
||||||
for (let i = 0; i < slowo.length; i++) {
|
|
||||||
sufiksy.push(slowo.slice(i));
|
|
||||||
}
|
|
||||||
document.getElementById('nieposortowane').textContent = formatSufiksy(sufiksy);
|
|
||||||
sufiksy.sort();
|
|
||||||
document.getElementById('posortowane').textContent = formatSufiksy(sufiksy);
|
|
||||||
}
|
|
||||||
function formatSufiksy(sufiksy) {
|
|
||||||
return sufiksy.map((sufiks, index) => `${index + 1} ${sufiks}`).join('\n');
|
|
||||||
}
|
}
|
2
get.php
2
get.php
|
@ -2,7 +2,7 @@
|
||||||
$dbhost = "qstack.pl";
|
$dbhost = "qstack.pl";
|
||||||
$dbuser = "boost";
|
$dbuser = "boost";
|
||||||
$dbpass = "pass";
|
$dbpass = "pass";
|
||||||
$dbname = "osoby";
|
$dbname = "db";
|
||||||
|
|
||||||
$conn = mysqli_connect($dbhost, $dbuser, $dbpass, $dbname);
|
$conn = mysqli_connect($dbhost, $dbuser, $dbpass, $dbname);
|
||||||
$ans = mysqli_query($conn, "SELECT * FROM osoby");
|
$ans = mysqli_query($conn, "SELECT * FROM osoby");
|
||||||
|
|
10
index.html
10
index.html
|
@ -1,5 +1,6 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="pl">
|
<html lang="pl">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
@ -7,16 +8,21 @@
|
||||||
<link rel="stylesheet" href="styles.css">
|
<link rel="stylesheet" href="styles.css">
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<h1>Sortowanie Sufiksów</h1>
|
<h1>Sortowanie Sufiksów</h1>
|
||||||
<input type="text" id="slowo" placeholder="Podaj słowo">
|
<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>
|
||||||
<pre id="nieposortowane"></pre>
|
<div class="pre" id="nieposortowane"></div>
|
||||||
<h2>Posortowane Sufiksy</h2>
|
<h2>Posortowane Sufiksy</h2>
|
||||||
<pre id="posortowane"></pre>
|
<div class="pre" id="posortowane"></div>
|
||||||
<script src="fetch.js"></script>
|
<script src="fetch.js"></script>
|
||||||
|
|
||||||
|
<li id="lista">
|
||||||
|
<ol></ol>
|
||||||
|
</li>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?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);
|
||||||
|
|
||||||
|
?>
|
14
styles.css
14
styles.css
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: Arial, sans-serif;
|
font-family: Arial, sans-serif;
|
||||||
background-color: #f5f5f5;
|
background-color: #f5f5f5;
|
||||||
|
@ -14,7 +13,6 @@ h1 {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
input[type="text"] {
|
input[type="text"] {
|
||||||
width: calc(100% - 22px);
|
width: calc(100% - 22px);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
@ -24,7 +22,6 @@ input[type="text"] {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
button {
|
button {
|
||||||
display: block;
|
display: block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -41,7 +38,6 @@ button:hover {
|
||||||
background-color: #004494;
|
background-color: #004494;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
color: #0056b3;
|
color: #0056b3;
|
||||||
border-bottom: 2px solid #0056b3;
|
border-bottom: 2px solid #0056b3;
|
||||||
|
@ -49,10 +45,16 @@ h2 {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre {
|
#nieposortowane {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* .pre {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
}
|
} */
|
||||||
|
|
Loading…
Reference in New Issue