I can not find the error :(

This is my error:

Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /Applications/MAMP/htdocs/justthatdrunk/member.php on line 75

This is my line 75:

$message 'Thank you for registering with us! Please click this link (or paste it into your browser) to activate your account: <a href="member.php?a=4&id='.$id.'&verification='.$verification.'">member.php?a=4&id='.$id.'&verification='.$verification.'</a>';

Also, if you have any tips how to make a message better for email verification, I will gladly like to hear them :slight_smile:

are you trying to echo this out?
$message is not equal to anything
and there’s no echo if you’re trying to echo it out.

That was exactly it. I forgot the = sign. I overlooked it so much because it is something that should come second nature. I was so convinced it was where it put in my other variables.