The link in a HTML file:
<a href="<?= Config::get('URL') . 'profile/showProfile/' . $user->user_id; ?>">Profile</a>
Works!
The same link in a PHP file:
echo "<a href='"<?= Config::get('URL') . 'profile/showProfile/' . $user->user_id; ?>"'>Profile</a>";
Does not work!
What am I doing wrong?
<?=to<?php echo