Show sourcecode
The following files exists in this folder. Click to view.
webbserverprogrammering/projekt/quiz/
createtable.php
dbconnection.php
deletepost.php
deletetable.php
insertdefaultposts.php
insertposts.php
leaderboard.php
log_in.php
log_out.php
main.php
question_maker.php
quiz_form.php
quiz_list.php
quiz_maker.php
result.php
selectposts.php
sign_in.php
style.js
updateposts.php
style.js
12 lines ASCII Windows (CRLF)
function createAlternative() {
const answerDiv = document.getElementById("answerDiv");
const id = 1 + (answerDiv.children.length / 2);
const input = document.createElement("input");
input.type = "text";
input.name = "answer" + id;
input.placeholder = "Alternativ";
answerDiv.appendChild(input);
}