function PostByThisUserPanel($UID, $dbAdapter)
{
    $gateTravelPost = new TravelPostTableGateway($dbAdapter);
    $resultTravelPost = $gateTravelPost->findForPosts($UID);
    echo '<hr>
			<p><i>Posts By This User</i></p>';
    foreach ($resultTravelPost as $row) {
        echo '<p><a href="single-post.php?id=' . $row->PostID . '">' . $row->Title . '</a></p>';
    }
    echo '</div>
		</div>';
}