Custom template for each radio button

Hello All,

I tried to use radiobutton list to generate below code but could not succeed on how to give different text for each radio button. Using template will keep the span text same for each radiobutton but i would like it to be different as below…




<input id="male" type="radio" name="gender" value="male">

<label for="male" class="spc">ABC</label>

<div class="clearfix"></div>

<span>Text related to ABC</span>

<div class="clearfix"></div>

<input id="male11" type="radio" name="gender" value="male11">

<label for="male11" class="spc">PQR</label>

<div class="clearfix"></div>

<span>Text related to PQR</span>



Thanks for helping…