i am listing on the page into a select element the names of all friends of a user who uses my app.. the render is alright as below but then when it goes through fbml only one friend comes up?
<form name="form1" id="form1">
<option value="" selected="true">Choose Friend</option>
<option value="x"><fb:name uid="x" linked="FALSE"></option>
<option value="x"><fb:name uid="x" linked="FALSE"></option>
<option value="x"><fb:name uid="x" linked="FALSE"></option>
<option value="x"><fb:name uid="x" linked="FALSE"></option>
<option value="x"><fb:name uid="x" linked="FALSE"></option>
<option value="x"><fb:name uid="x" linked="FALSE"></option> (and so on....)
</select>
</form>
but then when it renders into the app all i get is one-
<option value="" selected="true">Choose Friend</option>
<option value="x">John Smith</option></select>
(i have chanegd the values for privacy)