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

i'm using Sanitize::clean for posts comments , but it's replace New Line from textarea with \n

i need clean data but with orginal style and not convert NEW LINE to \n

thanks

share|improve this question
2  
why are you cleaning in the first place? if you are using h() in your view the content is secure. what if someone wants to post something that happens to contain <...>? LIKE IT JUST DID. he would be very upset if half his text is screwed up or missing just because the developer was overprotective or felt like it :) – mark Sep 27 '12 at 10:30
thanks a lot mark , you say we dont need any clearing incoming data from the form and just do htmlspecialchars() in our view ? then how we protected from SQL INJECTION and XSS or ... , thanks – ali786 Sep 27 '12 at 10:46
i just told you. if you use h() there is nothing else you need to worry about. that's the power of a framework. that is if you use the wrapper methods like save() and not manual queries like query() or unescaped updateAll() etc. – mark Sep 27 '12 at 11:00
ok i'm get it , thakns – ali786 Sep 27 '12 at 11:15

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.