문제

I have a little doubt here about not using FormHelper: I have a register form, something like that:

<form method="POST" action="/myController/saveData">
    <input type="text" name="data[Model][Field]"/>
</form>

am I right?

도움이 되었습니까?

해결책

Your code looks fine, but - there's an easy way to verify for sure.

When in doubt, just use the FormHelper temporarily. For example, lets say you have complex associations or lots of fields, and you're not SURE the input names that you need (and for some reason you don't want to use the FormHelper) just write it using the FormHelper, look at the source it generates, then use that.

다른 팁

Yes absolutely right, you can create forms like this!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top