Compare commits

...

5 Commits

Author SHA1 Message Date
piotrb 2ac625d825 qstack + localhost 2024-05-20 10:04:52 +02:00
piotrb 433fcc4754 init 2024-05-20 07:14:55 +02:00
pawel 364c6f3ca9 Merge branch 'pawelk' into dev 2024-05-17 10:07:06 +02:00
pawel 7e73a7cea6 css 2024-05-17 09:40:03 +02:00
pawel 2455fa869f dodanie plikow 2024-05-15 10:27:15 +02:00
5 changed files with 103 additions and 9 deletions

View File

@ -1,7 +1,22 @@
const url = "http://localhost/15.05/get.php" const url = "http://localhost/p20/get.php"
fetch( url + 'get.php') fetch(url)
.then(response => response.json()) .then(response => response.json())
.then( data => { .then(data => {
console.log(data) console.log(data)
}) })
function sortujSufiksy() {
const slowo = document.getElementById('slowo').value;
const sufiksy = [];
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');
}

View File

@ -1,4 +1,4 @@
<? <?php
$dbhost = "localhost"; $dbhost = "localhost";
$dbuser = "root"; $dbuser = "root";
$dbpass = ""; $dbpass = "";

View File

@ -1,13 +1,24 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <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">
<title>Document</title> <title>Sortowanie Sufiksów</title>
<link rel="stylesheet" href="styles.css">
</head> </head>
<body> <body>
<h1>Sortowanie Sufiksów</h1>
<input type="text" id="slowo" placeholder="Podaj słowo">
<button onclick="sortujSufiksy()">Sortuj Sufiksy</button>
<h2>Nieposortowane Sufiksy</h2>
<pre id="nieposortowane"></pre>
<h2>Posortowane Sufiksy</h2>
<pre id="posortowane"></pre>
<script src="fetch.js"></script> <script src="fetch.js"></script>
</body> </body>
</html> </html>

14
js.js Normal file
View File

@ -0,0 +1,14 @@
function sortujSufiksy() {
const slowo = document.getElementById('slowo').value;
const sufiksy = [];
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');
}

54
styles.css Normal file
View File

@ -0,0 +1,54 @@
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
color: #333;
margin: 0;
padding: 20px;
line-height: 1.6;
}
h1 {
text-align: center;
color: #0056b3;
margin-bottom: 20px;
}
input[type="text"] {
width: calc(100% - 22px);
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
button {
display: block;
width: 100%;
padding: 10px;
background-color: #0056b3;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #004494;
}
h2 {
color: #0056b3;
border-bottom: 2px solid #0056b3;
padding-bottom: 5px;
margin-top: 20px;
}
pre {
background-color: #fff;
border: 1px solid #ccc;
padding: 10px;
border-radius: 4px;
overflow-x: auto;
}