I am using CakePHP 2.2.4.
I am using the Form Helper to create a form. I need to have a form input with no name attribute.
Is this possible with the formhelper or should I just use HTML for creating this form?
eg in HTML:
<input type="text" maxlength="20" autocomplete="off" class="card-number stripe-sensitive required" />
Basically Am I able to do the above using the formhelper in CakePHP ?
Thanks.