Ecco un altro tentativo di aiutarti.
In realtà ho scritto una "soluzione completa" e nel processo ho scoperto alcuni piccoli bug nel tuo codice, oltre ad alcune cose che non riuscivo a capire.
Bug principale:tutti i tuoi pulsanti di opzione hanno lo stesso valore ($x), quindi non importa quale pulsante premi per la domanda 1, la risposta è "1", ecc. C'erano altre cose che hai fatto che non riuscivo a capire bene - quindi quello che ho fatto invece è stato creare un flusso semplice:una pagina che pone le domande e un'altra che valuta i risultati.
Pagina delle domande (ho offuscato i parametri di accesso per il mio database - no, non utilizzo "password" come password!):
<html>
<body>
<form action="./evaluate.php" method="post">
<?php
$server = mysql_connect ('localhost', 'username, 'password');
mysql_select_db("questionnaire", $server);
$question = mysql_query("SELECT * FROM `Questions`;");
$x = 0;
while ($row = mysql_fetch_assoc($question))
{
echo $row['question'] . '<br />';
echo '<input type="radio" name="a'.$x.'" value=1 />' .$row['answer1'] . '<br />';
echo '<input type="radio" name="a'.$x.'" value=2 />' .$row['answer2'] . '<br />';
echo '<input type="radio" name="a'.$x.'" value=3 />' .$row['answer3'] . '<br />';
echo '<input type="radio" name="a'.$x.'" value=4 />' .$row['answer4'] . '<br />';
$x = $x + 1;
}
mysql_close($server);
?>
<input type="submit" name="Submit" value="Submit" />
<br>
</form>
</body>
</html>
e valutare.php:EDIT:ho modificato un po' il codice per rendere l'output "più pulito" e ho aggiunto un tocco rosso/verde per mostrare le domande a cui era stata data una risposta corretta e non corretta. Ovviamente puoi portare queste cose molto oltre se vuoi...
<html>
<body>
<?php
$server = mysql_connect ('localhost', 'username', 'password');
mysql_select_db("questionnaire", $server);
$question = mysql_query("SELECT * FROM `Questions`;");
$x = 0;
$score = 0;
while ($row = mysql_fetch_assoc($question))
{
echo $row['question'] . '?<br />';
$answered = $row['answer'.$_POST['a'.$x]] ;
$correct = $row['correct'] ;
if ($answered == $correct ) {
$score++;
$acolor = 'green' ;
}
else {
$acolor = 'red' ;
}
echo 'you answered <font color=' . $acolor . '>' . $answered . '<font color=black> <br />';
echo 'the correct answer was ' . $correct . '<br />' ;
echo '-------------------------------------- <br />' ;
$x = $x + 1;
}
echo 'You had a total of ' . $score . ' out of ' . $x . ' questions right!';
mysql_close($server);
?>
</body>
</html>
Questo ha prodotto (per una semplice scelta multipla di tre domande che ho fatto) i risultati attesi. Fammi sapere se funziona per te!