I need a php script that takes a request and some variables from an HTTPService in Flex, goes to the referenced mysql database field, returns the values in an xml object to flex which are then bound to a combobox for a lookup.
mysql sample table name
_tblLookupGeo
field in that table
geographicArea
another sample table
_tblLookupTags
field in that table
tags
So in summary I need
1) a php script that will take values for the table name and field name from a flex application and return the required values in xml
2) how to write the HTTPService request to pass the necessary values to the php script
3) how to get the result of the HTTPService request and bind it to a XMLobject
I'm ok with binding it to the combo box once it's there!
Also since I'm doing this for multiple combo boxes, would I have to make a HTTPService request for each box? Or is there a more effective way of doing this?
Thanks so much.
Start Free Trial