<!doctype html> <html> <head lang="sv"></head> <body> <h1>Send data via url</h1> <form action="result.php" method="post"> <fieldset> <legend>Quizz</legend> <label>What is the first letter of Alphabet?</label> <br> <input type="radio" name="q1" value="A">A <br> <input type="radio" name="q1" value="B">B <br> <input type="radio" name="q1" value="C">C <br> <input type="radio" name="q1" value="D">D <br> <br> <label>What is the second letter of Alphabet?</label> <br> <input type="radio" name="q2" value="A">A <br> <input type="radio" name="q2" value="B">B <br> <input type="radio" name="q2" value="C">C <br> <input type="radio" name="q2" value="D">D <br> <br> <label>What is the third letter of Alphabet?</label> <br> <input type="radio" name="q3" value="A">A <br> <input type="radio" name="q3" value="B">B <br> <input type="radio" name="q3" value="C">C <br> <input type="radio" name="q3" value="D">D <br> <br> <label>What is the fourth letter of Alphabet?</label> <br> <input type="radio" name="q4" value="A">A <br> <input type="radio" name="q4" value="B">B <br> <input type="radio" name="q4" value="C">C <br> <input type="radio" name="q4" value="D">D <br> <br> <input type="submit" value="Submit"> </fieldset> </form>