public function user_register($user_first_name, $user_last_name, $country, $city){
include './config/db.php';
$STH = $DBH->prepare("INSERT INTO users (user_id, user_first_name, user_last_name, county, city)
values ('user_id', :user_first_name, :user_last_name, :country, :city)");
$STH->bindParam(':user_first_name', $user_first_name);
$STH->bindParam(':user_last_name', $user_last_name);
$STH->bindParam(':country', $country);
$STH->bindParam(':city', $city);
$STH->execute();
}
Подскажите, почему ничего не добавляет в бд?
Ошибки тоже не пишет(пробовал через исключение).