Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was under the impression that the FormHelper not only automatically protects me from SQL injection, but also per default escapes special characters like the HtmlHelper does. However, when I have:

<?php echo $this->Form->input('field', array('escape' => true)); ?>

And then enter & and ' for example into the field and hit save. These special characters get saved to the database without any escaping. This also happens without setting the option escape to true. So my question follows.

Is it true the CakePHP is designed so that you are not supposed nor able to escape a form field before saving using the options for the FormHelper? Or am I doing something wrong?

share|improve this question

2 Answers

up vote 1 down vote accepted

You do it wrong, you should escape all kind of output that is not going through a core helper by using the h() function, a shortcut for htmlspecialchars(). The core helpers, like Html::link() will do that escaping automatically.

See also How to escape output in PHP

share|improve this answer
But the question was regarding if the FormHelper escape the input like the HtmlHelper escapes output. I think the answer is no, but not sure. – alieninlondon Nov 1 '12 at 22:30
No it does not for a good reason. – burzum Nov 1 '12 at 22:42

Yes it is wrong, Before saving into the database you can escape html characters using

Sanitize::escape();
share|improve this answer
And the FormHelper will not do this escaping automatically right? – alieninlondon Nov 1 '12 at 13:29
2  
If you ever want to edit the content of this field again and you have for example entered "&" it will appear the next time you edit it as &amp;. If you save that unchanged again it will become "&amp;amp;" because it will ecape the content again. – burzum Nov 1 '12 at 22:44

Your Answer

 
discard

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

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