when I write this in a textarea:
<script>
alert(555);
</script>
then the php removes the tags, but if I write following in a textarea:
<script>
alert(555);
</script>
then the php accepts it and save in the database , but when it shows it, it is displayed like a text.
My question: Is this a safe way of passing it this way or some other better alternative exists?