Right. You need to focus on PHP code that would read/write/manipulate XML. Once you are done with that, you can read how can Flex apps communicate with backend (PHP, JSP etc).
Generally, there are following methods used:- 1) HTTPService class of Flex framwork - To communicate over standard HTTP GET/POST 2) WebService class of Flex framework - To communicate with server for SOAP based webservices (little complicated to use on both sides - server as well as client) 3) RemoteObject class of Flex framework - To communicate using Flash Remoting (AMF), it requires AMFPHP installed on your server, there is learning curve to use it as well. The simplest way is to you #1 option. You can make your PHP script accept HTTP/POST and return XML/Text. This way you can write frontend in Flex/AJAX/HTML-Form etc Does this help you? -abdul On 2/2/07, cisnky <[EMAIL PROTECTED]> wrote:
Do you have anymore information. Maybe start with how would you go about modifying xml with php and then look at the flex bit. On 2/2/07, alphaclass525 < [EMAIL PROTECTED]> wrote: > > How I can to modify a xml with Flex and Php? > >

