$posts_labels = R::findAll('postslabels', 'label = ? ORDER BY `time` DESC LIMIT {$start},{$end}', [$search_text]);
$posts = [];
foreach ($posts_labels as $value) {
$id = $value->post_id;
$post = R::findOne('posts', "id = ?", [$id]);
$posts[] = $post;
}