When there are <script> tags as the Textarea value, it executes the script.
Is there a way to prevent this?
|
When there are Is there a way to prevent this? |
||||
|
You need to encode the tags:
In PHP, you can do this with |
|||||||||||||
|
|
Because TextArea ( This is a really good reason why you should always validate what the user enters and posts to the server. If you display that input later, it can execute just like you meant to insert the script tag yourself. To stop it you need to encode the tags A similar concept is having nodes which aren't valid html such as |
||||
|
textareashouldn't be behaving different for others, but for me remains dangerous when submitting a form (not auto-encoding) others on here have reported that it is: stackoverflow.com/questions/8185397/… - weird. – one.beat.consumer Jan 31 '12 at 0:47