I have the following problem:
I can read xml data into my flash; that's no problem.
The tricky part comes when I try to update the xml file.

The script(I am using ASP):
--------------------------
<%@ Language=VBScript %>
<%
Option Explicit
Dim strTitle, strText, strXML
Dim i, maxi
(...)
maxi = Request.Form(max)
strXML = "<?xml version='1.0'?>" & vbcrlf
strXML = strXML & "<books>" & vbcrlf
For i = 0 to maxi
strXML = strXML & "<item>" & vbcrlf
strXML = strXML & "<title>" & Request.Form("title[i]") & "</title>" & vbcrlf
strXML = strXML & "<text>" & Request.Form("text[1]")& "</text>" & vbcrlf
strXML = strXML & "</item>" & vbcrlf
Next
strXML = strXML & "</books>"
(...)
-------------------------------

The variables title and text are arrays, generated in flash actionscript, but the asp script seems to see them as strings or something...
De quote request.form("title[i]") gives an error. When I leave the '[i]' out, the full array of all titles appears in the title item.

Can anyone help me with this?
Thanks!