Hello everyone,
I need a little help with an email reply. How do I not have the <br> tags show up in my reply message field?
This is my original message:
Hello tim,
Check this out. This is cool:
this is a test message
testing....
super cool
test message
This is what appears in the message box during reply:
RE: <br><p>Hello tim, <br> Check this out. This is cool: <br><br> this is a test message <br><br>testing...</p> <p>super cool<br><br>test message</p><br>
This some portions of my code for putting to original message in reply:
if(isset($REQUEST['msg']))
{
$msg=$REQUEST['msg'];
$msg1=substr($msg,0,2);
if($msg1!="RE")
$msg=" RE: ".$msg;
}
else
$msg="";
<td><textarea name="msg" cols="50" rows="6"><?=$msg?></textarea></td>