I want to populate form fields using the item selected from a ComboBox within my Flex application.
DataBinding will solve your problem
Get the results from a PHP service as a list of objects
private var Employee_ARRAY:ArrayCollection=
[{Eid:"12", Name:"#FF0000",phone:12345},
{Eid:"13", Name:"#00FF00",phone:12345},
{Eid:"14", Name:"#0000FF",phone:12345}];
<s:ComboBox id="cmb" dataProvider="{Employee_ARRAY}"/>
<s:Label text="{cmb.selectedItem.Name}"/>
<s:Label text="{cmb.selectedItem.phone}"/>
+