1
2
3
4
|
include ("sql_connect.php");
mysql_select_db("XXXXXXX") or die ("Die Datenbank wurde nicht gefunden.");
$insert = "INSERT INTO `erg_pokal_national` ( `id`, `datum`, `liga` , `ligadatei` , `spieltag` , `spielrunde` ,`user_A` , `user_B` , `team_A` , `team_B` , `teamID_A` , `teamID_B` , `tore_A` , `tore_B` , `et_A` , `et_B` , `g_A_zahl` , `g_B_zahl`, `gr_A_zahl`, `gr_B_zahl`, `r_A_zahl`, `r_B_zahl`, `torschuetzen_A` , `torschuetzen_B` , `g_A` , `g_B` , `gr_A` , `gr_B` , `r_A` , `r_B`, `spielbericht` , `validierung`, `entscheidung` ) VALUES ('', NOW(), '".$liganame."', '".$ligadatei."' ,'".$spieltag_wahl."','".$spielrunde."', '".$user_A."', '".$user_B."', '".$team_A_name."', '".$team_B_name."', '".$team_A_id."', '".$team_B_id."', '".$tore_heim."', '".$tore_gast."', '".$et_heim."', '".$et_gast."', '".$g_heim."', '".$g_gast."', '".$gr_heim."', '".$gr_gast."', '".$r_heim."', '".$r_gast."', '', '', '', '', '', '', '', '', '".$spielbericht."', '0', '".$entscheidung."');";
|