Compare commits

..

No commits in common. "2ac625d825865062029a6489739144b7bbd3d680" and "364c6f3ca9b4ba8788adc7021f3ea791646cfcf2" have entirely different histories.

5 changed files with 12 additions and 26 deletions

View File

@ -1,22 +1,7 @@
const url = "http://localhost/p20/get.php"
const url = "http://localhost/15.05/get.php"
fetch(url)
fetch( url + 'get.php')
.then(response => response.json())
.then(data => {
.then( 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";
$dbuser = "root";
$dbpass = "";

View File

@ -1,6 +1,5 @@
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@ -8,7 +7,6 @@
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Sortowanie Sufiksów</h1>
<input type="text" id="slowo" placeholder="Podaj słowo">
@ -17,7 +15,7 @@
<pre id="nieposortowane"></pre>
<h2>Posortowane Sufiksy</h2>
<pre id="posortowane"></pre>
<script src="fetch.js"></script>
<script src="js.js"></script>
</body>

1
js.js
View File

@ -8,7 +8,6 @@ function sortujSufiksy() {
sufiksy.sort();
document.getElementById('posortowane').textContent = formatSufiksy(sufiksy);
}
function formatSufiksy(sufiksy) {
return sufiksy.map((sufiks, index) => `${index + 1} ${sufiks}`).join('\n');
}

View File

@ -1,3 +1,4 @@
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
@ -13,6 +14,7 @@ h1 {
margin-bottom: 20px;
}
input[type="text"] {
width: calc(100% - 22px);
padding: 10px;
@ -22,6 +24,7 @@ input[type="text"] {
box-sizing: border-box;
}
button {
display: block;
width: 100%;
@ -38,6 +41,7 @@ button:hover {
background-color: #004494;
}
h2 {
color: #0056b3;
border-bottom: 2px solid #0056b3;