Ich gebe zu, ich habe ein ziemmlich idiotischen Code. Nur meine Frage ist, wie er funktionieren kann. Es tritt immer der folgende Fehler auf:
Code
[B]Parse error[/B]: syntax error, unexpected T_LNUMBER, expecting T_VARIABLE or '$' in [B]/home/www/web42/ehck/pages/ucp/quiz/simpsons.php[/B] on line [B]219
[/B]
Folgendes Skript habe ich:
PHP
if($_SESSION[$quiz_type.'_1'] == "true"){$f1a = '1';}else{$f1a = '0';}
if($_SESSION[$quiz_type.'_2'] == "true"){$f2a = '1';}else{$f2a = '0';}
if($_SESSION[$quiz_type.'_3'] == "true"){$f3a = '1';}else{$f3a = '0';}
if($_SESSION[$quiz_type.'_4'] == "true"){$f4a = '1';}else{$f4a = '0';}
if($_SESSION[$quiz_type.'_5'] == "true"){$f5a = '1';}else{$f5a = '0';}
if($_SESSION[$quiz_type.'_6'] == "true"){$f6a = '1';}else{$f6a = '0';}
if($_SESSION[$quiz_type.'_7'] == "true"){$f7a = '1';}else{$f7a = '0';}
if($_SESSION[$quiz_type.'_8'] == "true"){$f8a = '1';}else{$f8a = '0';}
if($_SESSION[$quiz_type.'_9'] == "true"){$f9a = '1';}else{$f9a = '0';}
if($_SESSION[$quiz_type.'_10'] == "true"){$f10a = '1';}else{$f10a = '0';}
if($_SESSION[$quiz_type.'_11'] == "true"){$f11a = '1';}else{$f11a = '0';}
if($_SESSION[$quiz_type.'_12'] == "true"){$f12a = '1';}else{$f12a = '0';}
if($_SESSION[$quiz_type.'_13'] == "true"){$f13a = '1';}else{$f13a = '0';}
if($_SESSION[$quiz_type.'_14'] == "true"){$f14a = '1';}else{$f14a = '0';}
if($_SESSION[$quiz_type.'_15'] == "true"){$f15a = '1';}else{$f15a = '0';}
if($_SESSION[$quiz_type.'_16'] == "true"){$f16a = '1';}else{$f16a = '0';}
if($_SESSION[$quiz_type.'_17'] == "true"){$f17a = '1';}else{$f17a = '0';}
if($_SESSION[$quiz_type.'_18'] == "true"){$f18a = '1';}else{$f18a = '0';}
if($_SESSION[$quiz_type.'_19'] == "true"){$f19a = '1';}else{$f19a = '0';}
if($_SESSION[$quiz_type.'_20'] == "true"){$f20a = '1';}else{$f20a = '0';}
$anzahl_richtige = $f1a + $f2a + $f3a + $f4a + $5a + $f6a + $f7a + $f8a + $f9a + $f10a + $f11a + $f12a + $f13a + $f14a + $f15a + $f16a + $f17a + $f18a + $f19a + $f20a;
$anzahl_falsche = 20 - $anzahl_richtige;
Alles anzeigen
Zeile 219 ist die Variabel $anzahl_richtige
MfG