Compare commits
No commits in common. "24dc33d4cfb649add0c1a90babdc374d727aab80" and "c225a7d1979ea4720a301e61655a07042a566984" have entirely different histories.
24dc33d4cf
...
c225a7d197
7
fetch.js
7
fetch.js
|
@ -1,8 +1,8 @@
|
||||||
const url = "http://localhost/p20/get.php"
|
const url = "http://localhost/P20.05/get.php"
|
||||||
|
|
||||||
fetch(url)
|
fetch(url)
|
||||||
.then(response => response.json())
|
.then(response => response.json())
|
||||||
.then(data => {
|
.then( data => {
|
||||||
console.log(data)
|
console.log(data)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -15,8 +15,7 @@ function sortujSufiksy() {
|
||||||
document.getElementById('nieposortowane').textContent = formatSufiksy(sufiksy);
|
document.getElementById('nieposortowane').textContent = formatSufiksy(sufiksy);
|
||||||
sufiksy.sort();
|
sufiksy.sort();
|
||||||
document.getElementById('posortowane').textContent = formatSufiksy(sufiksy);
|
document.getElementById('posortowane').textContent = formatSufiksy(sufiksy);
|
||||||
}
|
}
|
||||||
|
|
||||||
function formatSufiksy(sufiksy) {
|
function formatSufiksy(sufiksy) {
|
||||||
return sufiksy.map((sufiks, index) => `${index + 1} ${sufiks}`).join('\n');
|
return sufiksy.map((sufiks, index) => `${index + 1} ${sufiks}`).join('\n');
|
||||||
}
|
}
|
4
get.php
4
get.php
|
@ -1,9 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
<<<<<<< HEAD
|
|
||||||
$dbhost = "qstack.pl";
|
$dbhost = "qstack.pl";
|
||||||
=======
|
|
||||||
$dbhost = "localhost";
|
|
||||||
>>>>>>> PiotrB
|
|
||||||
$dbuser = "root";
|
$dbuser = "root";
|
||||||
$dbpass = "";
|
$dbpass = "";
|
||||||
$dbname = "db";
|
$dbname = "db";
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
<!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">
|
||||||
|
@ -8,7 +7,6 @@
|
||||||
<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">
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
const url = "http://localhost/P20.05"
|
||||||
|
|
||||||
|
fetch('get.php')
|
||||||
|
.then(response => response.json())
|
||||||
|
.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);
|
||||||
|
}git
|
||||||
|
function formatSufiksy(sufiksy) {
|
||||||
|
return sufiksy.map((sufiks, index) => `${index + 1} ${sufiks}`).join('\n');
|
||||||
|
}
|
|
@ -1,3 +1,4 @@
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: Arial, sans-serif;
|
font-family: Arial, sans-serif;
|
||||||
background-color: #f5f5f5;
|
background-color: #f5f5f5;
|
||||||
|
@ -13,6 +14,7 @@ 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;
|
||||||
|
@ -22,6 +24,7 @@ input[type="text"] {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
button {
|
button {
|
||||||
display: block;
|
display: block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -38,6 +41,7 @@ button:hover {
|
||||||
background-color: #004494;
|
background-color: #004494;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
color: #0056b3;
|
color: #0056b3;
|
||||||
border-bottom: 2px solid #0056b3;
|
border-bottom: 2px solid #0056b3;
|
||||||
|
|
Loading…
Reference in New Issue