This is my current code:
<a href='.$_SERVER['FULL_URL'].'>Here</a>
It works with no problems the link becomes the full url including arguments.
However when I change the code to this the link becomes wrong ( I want to add some arguments to the link):
$newarg = '&newarg=egfesgseg';
<a href='.$_SERVER['FULL_URL'].$newarg.'> Here</a>
Can someone please help me and tell me how to fix this?