使用php和mysqli将行中的整数字段更新为1

I want to find the row where the username, password, email country etc. matches and update "points" in that row by 1 point. Why isn't my code working?

<?php

$con=mysqli_connect("mysql_host","mysql_user","mysql_password","mysql_database");

$country = $_POST["country"];
$district = $_POST["district"];
$username = $_POST["username"];
$email = $_POST["email"];
$password = $_POST["password"];



$query = "UPDATE table SET points=points+1 WHERE country = ? AND district = ? username = ? AND email = ? AND password = ?";
$statement = mysqli_prepare($con, $query);
mysqli_stmt_bind_param($statement, "isssss", $points, $country, $district, $username, $email, $password);
mysqli_stmt_execute($statement);
mysqli_close($con);
exit;

?>

try to change,

$query = "UPDATE table SET points=points+1 WHERE country = ? AND district = ? username = ? AND email = ? AND password = ?";

to

$query = "UPDATE table SET points=points+1 WHERE country = ? AND district = ? AND username = ? AND email = ? AND password = ?";