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'); }