Newer Version Available
$FieldSet
Provides access to a field set
defined in your organization.
Usage
Use this in your Visualforce pages to dynamically iterate over fields in a field set. You must prefix this global variable with a reference to the standard or custom object that has the field set.
Example
1<apex:page standardController="Account">
2 <apex:repeat value="{!$Account.FieldSet.mySpecialFields}" var="field">
3 <apex:outputText value="{!field}" />
4 </apex:repeat>
5</apex:page>