Is it possible to use html tags in a php variable?
Say if I wanted my variable $body_header to consist of:
<h2>$fname $lname says:</h2><br />
I've tried putting it in the variable like this:
But it won't print out. It actually prints out the tags rather than implementing them to format the other variables. Is this possible?PHP Code:$body_header = "<h2>$fname $lname says:</h2><br />";

