Du beder php om at caste $match_id
og $rating
til heltal. Du skal bruge:
$sql->bind_param("id", $match_id, $rating);
i stedet for
$sql->bind_param("ii", ...
Du beder php om at caste $match_id
og $rating
til heltal. Du skal bruge:
$sql->bind_param("id", $match_id, $rating);
i stedet for
$sql->bind_param("ii", ...