If it's PHP on server, you can use $_REQUEST for POST or GET data. Not sure, if URLLoader would let you load a URL with a query-string at the same time posting the data to it?
-abdul On Jan 10, 2008 8:55 PM, Jim Hayes <[EMAIL PROTECTED]> wrote: > I'm pretty sure that if you use POST in flex then you are going to have > to change your server to read the POSTed information rather than the > querystring. > > That said, you don't mention what you're using on your server. In any > case, it's likely to be a fairly trivial change to implement assuming that > you have control over the server side code. > > > > -----Original Message----- > *From:* [email protected] [mailto:[EMAIL PROTECTED] *On > Behalf Of *markgoldin_2000 > *Sent:* 10 January 2008 14:26 > *To:* [email protected] > *Subject:* [flexcoders] Re: HTTPService, POST, and QueryString > > > > Where is my Form data going to be? In URLVariables too? > > --- In [email protected] <flexcoders%40yahoogroups.com>, "Nathan > Arizona" > <[EMAIL PROTECTED]> wrote: > > > > You can use this I think. > > > > var dataset:URLVariables = new URLVariables(); > > > > var request:URLRequest = newURLRequest("somepage"); > > request.data = dataset; > > request.method = URLRequestMethod.POST > > > > --- In [email protected] <flexcoders%40yahoogroups.com>, > "markgoldin_2000" > > <markgoldin_2000@> wrote: > > > > > > My server side of application uses QueryString to extract > parameters > > > being sent from the client to query data and send it back. To > save data > > > I would want to use POST but I also need to send some parameters > to the > > > server as well. I want to use same server logic to process > parameters > > > in both getting data and saving it. But if I use POST method no > > > QueryString is available on the server. Any suggestions? > > > > > > Thanks > > > > > > > > ______________________________________________________________________ > This communication is from Primal Pictures Ltd., a company registered in > England and Wales with registration No. 02622298 and registered office: 4th > Floor, Tennyson House, 159-165 Great Portland Street, London, W1W 5PA, UK. > VAT registration No. 648874577. > > This e-mail is confidential and may be privileged. It may be read, copied > and used only by the intended recipient. If you have received it in error, > please contact the sender immediately by return e-mail or by telephoning > +44(0)20 7637 1010. Please then delete the e-mail and do not disclose its > contents to any person. > This email has been scanned for Primal Pictures by the MessageLabs Email > Security System. > ______________________________________________________________________ > > -- -abdul --------------------------------------- http://abdulqabiz.com/blog/ ---------------------------------------

