I'm doing a platform of streaming
type YouNow , I've already done everything but I have a problem with the chat .
I want to make a chat where the text goes up and do not leave that box, my only alternative is a textarea.
but now my question is how can I hide the tags - (< br > < b > < div >)
<?php
if ($_POST) {
$name = $_POST['name'];
$content = $_POST['commentContent'];
$handle = fopen("comentarios.php","a");
fwrite($handle,"<b>".$name. "</b>:<br>". $content. "<br><br>");
fclose($handle);
}
?>
<textarea id="areadetexto">
<div id="comentarios">
<div id="comentario"> <?php include "comentarios.php"; ?><br/></div>
</textarea>
The problem is that I can not find any information