I know this has been asked before, but in my case, i'm kinda stumped where i need to put my placeholders:
$prepared = $wpdb->prepare(
"
SELECT *
FROM tarieven
WHERE bestemming
= '" . trim($_POST['destination']) . "'
",
'value', 'another value'
);
$results = $wpdb->get_results($prepared);