Re: [Flashcoders] Constructing XML

2006-01-29 Thread Sam Wootton
Cheers Ian, will give that a go :] Much appreciated. Regards, Sam On 29/01/06, Ian Thomas <[EMAIL PROTECTED]> wrote: > > Hi Sam, > Just run it through the PHP function stripslashes() before parsing it. > > Cheers, > Ian > > On 1/29/06, Sam Wootton <[EMAIL PROTECTED]> wrote: > > > > Hi, > >

Re: [Flashcoders] Constructing XML

2006-01-29 Thread Ian Thomas
Hi Sam, Just run it through the PHP function stripslashes() before parsing it. Cheers, Ian On 1/29/06, Sam Wootton <[EMAIL PROTECTED]> wrote: > > Hi, > > Thanks in advance for any help. > > I am constructing an XML file in Actionscript, here is a little bit that > cycles through an array, pro

[Flashcoders] Constructing XML

2006-01-29 Thread Sam Wootton
Hi, Thanks in advance for any help. I am constructing an XML file in Actionscript, here is a little bit that cycles through an array, producing nodes. ActionScript Code: strXML += "\n" for( var i:Number = 0; i < allSquares.length; i++ ) { strXML += "\n'; }