How do i add a string to a data type that had html?

Posted by creocare on Stack Overflow See other posts from Stack Overflow or by creocare
Published on 2010-05-12T22:54:33Z Indexed on 2010/05/12 23:14 UTC
Read the original article Hit count: 181

Filed under:
|
|
|

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.

© Stack Overflow or respective owner

Related posts about php

Related posts about email