There are problems using LoadVars and POST in a frameset in IE too (a problem I am working on a workaround for) I don't know if you are using a frameset but this might confuse matters
-----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jon Bradley Sent: 31 January 2008 18:01 To: Flash Coders List Subject: Re: [Flashcoders] LoadVars maximum? On Jan 31, 2008, at 11:00 AM, Dave Mennenoh wrote: > I've been looking and looking and cannot find the info... I am > trying to send an array containing many thousands of entries to a > php page for db storage. However when I get too much info into a > loadvars property, it just stops working and sits there. What's the > max I can send in one LV property? I am doing toString() on the > array, but I guess I need to break the array into multiple arrays - > just wondering what granularity if best for speed and such. Make sure you are using POST. POST and GET is limited to 2048 characters (in IE) in the request URL. If you are using POST, you need to ensure that the POST data is in the header of the transaction and not in the URL itself. IE, with loadVars, you send the request to a URL. The variables defined in the timeline where the loadVars is occurring is what gets added to the request header (if I understand the process correctly). If you're appending all these variables to the URL, it will not work. cheers, jon _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

