Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
What’s the best method for sanitizing user input with PHP?
Preventing XSS with PHP

I own a database with old php forums, and I have a textarea that I want to harden from the XSS.. I am new in that field..

The textarea is defined as :

 <textarea name="information" cols="60" row="4" id="infoid" > < /textarea> 

What should I add to prevent it from taking " < , >" symbols ???

share|improve this question
htmlspecialchars() – zerkms Nov 10 '12 at 8:02
what do u mean ?? I am totally new – user1413188 Nov 10 '12 at 8:03
2  
Google what zerk just told you. – Daedalus Nov 10 '12 at 8:05
3  
7  
It's surprising that you are aware of xss but have never heard about htmlspecialchars(). – asprin Nov 10 '12 at 8:07
show 4 more comments

marked as duplicate by deceze, Daedalus, Steve Fenton, Mitch Wheat, Wesley Murch Nov 10 '12 at 8:09

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

Why not take anything that comes your way? Convert and escape those characters. i.e < is converted to &lt; etc. That will keep the punters happy AKA the people paying the cash.

Also it is trivial see htmlspecialchars

share|improve this answer
emm can some one use $lt in reverse to hack me ?? !!!! – user1413188 Nov 10 '12 at 8:17
Also, where should I add this function string htmlspecialchars ( string $string [, int $flags = ENT_COMPAT | ENT_HTML401 [, string $encoding = 'UTF-8' [, bool $double_encode = true ]]] ) – user1413188 Nov 10 '12 at 8:18
Start with php's manual, @user1413188. – Daedalus Nov 10 '12 at 8:21
u mean by <?php – user1413188 Nov 10 '12 at 8:24
No. I mean google 'php manual' and start reading, @user1413188. – Daedalus Nov 10 '12 at 18:59

Not the answer you're looking for? Browse other questions tagged or ask your own question.