ich habs so gemacht
klappt aber nicht
PHP-Code:
$conn_id = mysql_connect($host,$user,$password);
mysql_select_db($database,$conn_id);
if (mysql_num_rows(mysql_query("select * from wgc_tipp where spiele_id = '$spiele_id' AND user_id = '$id'")))
mysql_query("update wgc_tipp set tipp_heim = '$tipp_heim', tipp_gast = '$tipp_gast'
where spiele_id = '$spiele_id' AND user_id = '$id'");
else
mysql_query("INSERT INTO wgc_tipp (tipp_heim,tipp_gast)VALUES ('$tipp_heim','$tipp_gast')where spiele_id = '$spiele_id' AND user_id = '$id' ;
Kommentar