Here I need to display text with break line but I simply display the html code inside the text area. Here is my code
<?php
$msg.="From :";
$msg.="<br/>";
$msg.="To :";
$msg.="Date :";
print_r($msg);
?>
<textarea><?php print_r($msg);?></textarea>
I need to print html executed code in text area. Thank you in advance.
echo:echo $msg