20 lines
592 B
JavaScript
20 lines
592 B
JavaScript
class database{
|
|
sendData(naam, score) {
|
|
fetch(`https://oege.ie.hva.nl/~hossan/postData.php?name=${naam}&score=${score}`)
|
|
}
|
|
|
|
getData(naam) {
|
|
// Fetch data from the database, put it in an array, and log it to the console
|
|
//met backticks als " " kan je variabelen in een string zetten
|
|
return fetch(`https://oege.ie.hva.nl/~hossan/getData.php?name=${naam}`) // Add return here
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
requesteddata = data;
|
|
console.log(data);
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
|