How do i add a string to a data type that had html?
- by creocare
I'm creating a share page for my website. I want the user to be able to send a message along with the formatted html.
so I have.
$message = $_REQUEST['message'];
$page = 'some html code';
mail($TO,$subject,$page, $headers);
I want the $message and $page to be added together.