Lid |
|
Ik heb nu de volgende code:
$sql_wed = mysql_query("SELECT * FROM tbl_wedstrijd WHERE type_id = '4'");
while ($row_wed = mysql_fetch_array($sql_wed))
{
$thuisploeg_id = $row_wed['thuisploeg_id'];
$uitploeg_id = $row_wed['uitploeg_id'];
$ploeg_wed = array_combine($thuisploeg_id,$uitploeg_id);
$sql_4e = mysql_query("SELECT * FROM tbl_voorspelling2 WHERE wedstrijd_id = '$wedstrijd_id_gok' AND user_id = '$user_db'");
$row = mysql_fetch_array($sql_4e);
$thuisploeg = $row['thuisploeg_id'];
$uitploeg = $row['uitploeg_id'];
$ploeg_gok = array_combine($thuisploeg,$uitploeg);
$ploeg_gok = array_unique($ploeg_gok);
if ($ploeg_wed == $ploeg_gok)
{
$aantalpunten = $aantalpunten + $punten_array['4e_finalist'];
}
}
$sql_wed = mysql_query("SELECT * FROM tbl_wedstrijd WHERE type_id = '4'"); { $thuisploeg_id = $row_wed['thuisploeg_id']; $uitploeg_id = $row_wed['uitploeg_id']; $ploeg_wed = array_combine($thuisploeg_id,$uitploeg_id); $sql_4e = mysql_query("SELECT * FROM tbl_voorspelling2 WHERE wedstrijd_id = '$wedstrijd_id_gok' AND user_id = '$user_db'"); $thuisploeg = $row['thuisploeg_id']; $uitploeg = $row['uitploeg_id']; $ploeg_gok = array_combine($thuisploeg,$uitploeg); if ($ploeg_wed == $ploeg_gok) { $aantalpunten = $aantalpunten + $punten_array['4e_finalist']; } }
Ik krijg nu de volgende meldingen:
Warning: array_combine() expects parameter 1 to be array, string given
Warning: array_unique() expects parameter 1 to be array, null given
(de tweede zal wel komen doordat de eerste niets geeft)
Waar ga ik nog de fout in?
|