PLIK db.php
This commit is contained in:
parent
0cf2d32d88
commit
7c2787bcfd
|
@ -0,0 +1,6 @@
|
||||||
|
<?php
|
||||||
|
$dbhost = "localhost";
|
||||||
|
$dbuser = "root";
|
||||||
|
$dbpass = "";
|
||||||
|
$dbname = "db";
|
||||||
|
?>
|
17
fetch.js
17
fetch.js
|
@ -1,7 +1,22 @@
|
||||||
const url = "http://localhost/15.05/get.php"
|
const url = "http://localhost/15.05/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');
|
||||||
|
}
|
2
js.js
2
js.js
|
@ -15,7 +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);
|
||||||
}git
|
}
|
||||||
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');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue