Can someone point out where in the code i am going wrong?
PHP document
[php]
<?php include("nav2.php");?> <div id="quiz_content">
<img src="img/robin-ban.png" width="300" alt="robin"/>
<h2>So you think you can be a bartender?</h2>
<form id="start-quiz" method="post" action="test.php">
<div class="overlay index">
<div class="quiz-overlay"></div>
<h1 class="index-headline"></h1>
<p class="index-sell"></p>
<a href="test.php">
<button type="button" class="btn btn-warning btn-lg">Take a shot</button>
</a>
</div>
</form>
</div>
<div id="footer">
<p>© Erin Kelly's Liquor Nerd 2015</p>
</div>
</body>
[/php]
text php doc with questions
[php]
<?php include("nav2.php");?>
<div id="quiz_content">
<form id="quiz" action="grade.php" method="post">
<ol id="exam-questions">
<li>
<h3>Question 1</h3>
<div>
<input type="radio" name="question-1-answers" id="question-1-answers-a" value="A"/>
<label for="question-1-answers-a">a) Answer a of question 1</label>
</div>
<div>
<input type="radio" name="question-1-answers" id="question-1-answers-a" value="A"/>
<label for="question-1-answers-a">b) Answer b of question 1</label>
</div>
<div>
<input type="radio" name="question-1-answers" id="question-1-answers-a" value="A"/>
<label for="question-1-answers-a">c) Answer c of question 1</label>
</div>
</li>
</ol>
<input type="submit"value=<button type="button" class="btn btn-warning">Submit</button>/>
</form>
</div>
</div>
<div id="footer">
</div>
</body>
grade.php
<?php $answer1 = $_POST['question-1-answers']; $answer2 = $_POST['question-2-answers']; $answer3 = $_POST['question-3-answers']; $answer4 = $_POST['question-4-answers']; $answer5 = $_POST['question-5-answers']; $answer6 = $_POST['question-6-answers']; $answer7 = $_POST['question-7-answers']; $answer8 = $_POST['question-8-answers']; $answer9 = $_POST['question-9-answers']; $answer10 = $_POST['question-10-answers']; $totalCorrect = 0; if ($answer1 == "B") {$totalCorrect+1; } if ($answer2 == "C") {$totalCorrect+1; } if ($answer3 == "A") {$totalCorrect+1; } if ($answer4 == "A") {$totalCorrect+1; } if ($answer5 == "B") {$totalCorrect+1; } if ($answer6 == "C") {$totalCorrect+1; } if ($answer7 == "A") {$totalCorrect+1; } if ($answer8 == "A") {$totalCorrect+1; } if ($answer9 == "A") {$totalCorrect+1; } if ($answer10) {$totalCorrect++; } echo "