hallo ich war gar dabei ne code zu schreibn, die SQL anweisung sieht so aus:
ja und wenn das ding ausgeführt wird dann kommt folgende fehlermeldung:
Error[UPDATE|match]:
INSERT INTO match
(team1, points1, team2, points2, game, liga, map)
VALUES
('sde',
'1',
'afk',
'29',
'css',
'esl',
'de_dust2')
MySQL-Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'match (team1, points1, team2, points2, game, liga, map) ' at line 1
also ich weiß einfahc nich wo da der fehler sein soll, vielleicht kann mir ja einer von euch helfen
PHP-Code:
$sql = "INSERT INTO match
(team1, points1, team2, points2, game, liga, map)
VALUES
('".$_POST['team1']."',
'".$_POST['points1']."',
'".$_POST['team2']."',
'".$_POST['points2']."',
'".$_POST['game']."',
'".$_POST['liga']."',
'".$_POST['map']."')";
Error[UPDATE|match]:
INSERT INTO match
(team1, points1, team2, points2, game, liga, map)
VALUES
('sde',
'1',
'afk',
'29',
'css',
'esl',
'de_dust2')
MySQL-Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'match (team1, points1, team2, points2, game, liga, map) ' at line 1
also ich weiß einfahc nich wo da der fehler sein soll, vielleicht kann mir ja einer von euch helfen

Kommentar