Compare commits
2 Commits
5f5c9affe6
...
b89ee1e8b5
Author | SHA1 | Date |
---|---|---|
james | b89ee1e8b5 | |
james | a1fd1497a1 |
10
fetch.js
10
fetch.js
|
@ -1,14 +1,12 @@
|
|||
//const url = "http://localhost/p20/get.php"
|
||||
const url = "http://qstack.pl:8080/z1/get.php"
|
||||
const url = "http://localhost/dev/get.php"
|
||||
// const url = "http://qstack.pl:8080/z1/get.php"
|
||||
let lista
|
||||
|
||||
fetch(url)
|
||||
.then(response => response.json())
|
||||
.then(data => {
|
||||
sortujSufiksy(data)
|
||||
});
|
||||
|
||||
function sortujSufiksy(data) {
|
||||
|
||||
function wyswietlSufiksy(data) {
|
||||
data.forEach((element) => document.querySelector('#nieposortowane').innerHTML += `<li> ${JSON.stringify(element.osoby)} </li>`);
|
||||
}
|
||||
}
|
|
@ -11,7 +11,6 @@
|
|||
|
||||
<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>
|
||||
<div class="pre" id="nieposortowane"></div>
|
||||
|
@ -20,7 +19,7 @@
|
|||
<script src="fetch.js"></script>
|
||||
|
||||
<li id="lista">
|
||||
<ol></ol>
|
||||
<ol></ol>
|
||||
</li>
|
||||
|
||||
</body>
|
||||
|
|
17
qstack.php
17
qstack.php
|
@ -1,17 +0,0 @@
|
|||
<?php
|
||||
$dbhost = "qstack.pl";
|
||||
$dbuser = "root";
|
||||
$dbpass = "";
|
||||
$dbname = "osoby";
|
||||
|
||||
$conn = mysqli_connect($dbhost, $dbuser, $dbpass, $dbname);
|
||||
$ans = mysqli_query($conn, "SELECT * FROM osoby");
|
||||
$json = array();
|
||||
|
||||
|
||||
while ($row = mysqli_fetch_assoc($ans)) {
|
||||
$json[] = $row;
|
||||
}
|
||||
echo json_encode($json);
|
||||
|
||||
?>
|
|
@ -1,6 +1,6 @@
|
|||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: #f5f5f5;
|
||||
background-color: #f7f7f7f5;
|
||||
color: #333;
|
||||
margin: 0;
|
||||
padding: 20px;
|
||||
|
|
Loading…
Reference in New Issue