I\'m trying to use a php variable to add a href value for a link in an echo statement.
Here\'s a simplified version of the code I want to use. I know that I can\'t j
you can either use
echo 'Link';
or
echo "Link';
if you use double quotes you can insert the variable into the string and it will be parsed.