Hallo zusammen,
habe gestern und heute an einem Sporttoto-Script gearbeitet und ich habe beim Auswertungsscript offenbar einen Fehler gemacht. Es wird ein Parse Error am Ende des Scripts (Zeile mit dem ?>) angezeigt, wenn ich den nachfolgenden Abschnitt ins Script reinhänge, wenn ich ihn rausnehme läuft der Rest problemlos...
Vielleicht findet jemand von euch den Fehler bzw. kann mir sagen, worauf ein Parse Error am Scriptende hindeutet:
Vielen Dank für eure Hilfe!
Gruss
poolpage
habe gestern und heute an einem Sporttoto-Script gearbeitet und ich habe beim Auswertungsscript offenbar einen Fehler gemacht. Es wird ein Parse Error am Ende des Scripts (Zeile mit dem ?>) angezeigt, wenn ich den nachfolgenden Abschnitt ins Script reinhänge, wenn ich ihn rausnehme läuft der Rest problemlos...
Vielleicht findet jemand von euch den Fehler bzw. kann mir sagen, worauf ein Parse Error am Scriptende hindeutet:
PHP:
} if($action == "sporttoto_calc") {
$conn = mysql_connect('localhost', 'lbf-web', 'D9ja2nSk');
if(!($conn)) {
die("Datenbank nicht gefunden!");
}
if (!mysql_select_db(lbf)) {
echo mysql_error($serverid);
}
$sqlbefehl = "SELECT * FROM lbftoto WHERE a1 != ''";
$ergebnis = mysql_query($sqlbefehl, $conn);
if($ra1 > $ra2) {
$totora = "1";
} if($ra1 == $ra2) {
$totora = "X";
} else {
$totora = "2";
}
if($rb1 > $rb2) {
$totorb = "1";
} if($rb1 == $rb2) {
$totorb = "X";
} else {
$totorb = "2";
}
if($rc1 > $rc2) {
$totorc = "1";
} if($rc1 == $rc2) {
$totorc = "X";
} else {
$totorc = "2";
}
if($rd1 > $rd2) {
$totord = "1";
} if($rd1 == $rd2) {
$totord = "X";
} else {
$totord = "2";
}
if($re1 > $re2) {
$totore = "1";
} if($re1 == $re2) {
$totore = "X";
} else {
$totore = "2";
}
while($teilnehmer = mysql_fetch_array($ergebnis)) {
$punkte = $teilnehmer[punkte];
if($teilnehmer[a1] > $teilnehmer[a2]) {
$totoa = "1";
} if($teilnehmer[a1] == $teilnehmer[a2]) {
$totoa = "X";
} else {
$totoa = "2";
}
if($teilnehmer[b1] > $teilnehmer[b2]) {
$totob = "1";
} if($teilnehmer[b1] == $teilnehmer[b2]) {
$totob = "X";
} else {
$totob = "2";
}
if($teilnehmer[c1] > $teilnehmer[c2]) {
$totoc = "1";
} if($teilnehmer[c1] == $teilnehmer[c2]) {
$totoc = "X";
} else {
$totoc = "2";
}
if($teilnehmer[d1] > $teilnehmer[d2]) {
$totod = "1";
} if($teilnehmer[d1] == $teilnehmer[d2]) {
$totod = "X";
} else {
$totod = "2";
}
if($teilnehmer[e1] > $teilnehmer[e2]) {
$totoe = "1";
} if($teilnehmer[e1] == $teilnehmer[e2]) {
$totoe = "X";
} else {
$totoe = "2";
}
if($totora == $totoa) {
$punkte = $punkte + 3;
if($totorb == $totob) {
$punkte = $punkte + 3;
if($totorc == $totoc) {
$punkte = $punkte + 3;
if($totord == $totod) {
$punkte = $punkte + 3;
if($totore == $totoe) {
$punkte = $punkte + 3;
}
$totalra = $ra1 + $ra2;
$totalrb = $rb1 + $rb2;
$totalrc = $rc1 + $rc2;
$totalrd = $rd1 + $rd2;
$totalre = $re1 + $re2;
$totala = $teilnehmer[a1] + $teilnehmer[a2];
$totalb = $teilnehmer[b1] + $teilnehmer[b2];
$totalc = $teilnehmer[c1] + $teilnehmer[c2];
$totald = $teilnehmer[d1] + $teilnehmer[d2];
$totale = $teilnehmer[e1] + $teilnehmer[e2];
if($totalra == $totala){
$punkte = $punkte + 2;
} if($totalrb == $totalb) {
$punkte = $punkte + 2;
} if($totalrc == $totalc) {
$punkte = $punkte + 2;
} if($totalrd == $totald) {
$punkte = $punkte + 2;
} if($totalre == $totale) {
$punkte = $punkte + 2;
}
}
Vielen Dank für eure Hilfe!
Gruss
poolpage