Bei der Auswertung hole ich mir nochmal die IDs und die Antwortoptionen:
Code
while ($row = mysql_fetch_assoc($result)){
$id= $row["id"];
$A1 = $row["Antwort1"];
$A2 = $row["Antwort2"];
$A3 = $row["Antwort3"];
$A4 = $row["Antwort4"];
$A5 = $row["Antwort5"];
Jetzt will ich ausgeben welche Antwort der Benutzer gewählt hat. Dazu brauche ich Variablen mit $A und $_POST['antwort'][$id] als Nummern. Wenn der User z.B Antwort drei nimmt, dann ist ja $_POST['antwort'][$id]== 3 ; Diese 3 muss ich jetzt nach $A schreiben damit ich die Variable $A3 habe.