Form helper for creating Radio button in Cakephp
Posted
by Aruna
on Stack Overflow
See other posts from Stack Overflow
or by Aruna
Published on 2009-09-07T11:08:24Z
Indexed on
2010/05/04
20:28 UTC
Read the original article
Hit count: 265
cakephp
hi,
i am trying to create a Radio button using Cakephp like the one the result should resemble like
<div data-attr="radio" id="1">
<label id="label1">Untitled1</label><br/>
<input type="radio" value="option1" id="Radio11" name="Workexperience"/>
<label for="Radio11">Option1</label>
<input type="radio" value="option2" id="Radio12" name="Workexperience"/>
<label for="Radio12">Option2</label>
</div>
how to generate so using Form helper.. Please suggest me..
© Stack Overflow or respective owner