Du säger åt php att casta $match_id
och $rating
till heltal. Du bör använda:
$sql->bind_param("id", $match_id, $rating);
istället för
$sql->bind_param("ii", ...
Du säger åt php att casta $match_id
och $rating
till heltal. Du bör använda:
$sql->bind_param("id", $match_id, $rating);
istället för
$sql->bind_param("ii", ...