Re: [Flashcoders] PHP sessions in AS2

2006-08-23 Thread James
for the record problem turned out to be missing www in URL. Most likely a very common problem discovered by 1000s on this list. URL must have www on mac, on PC it seems to work with either http://yourdomain.com or http://www.yourdomain.com for anyone else who is confused, flash embedded in HT

Re: [Flashcoders] PHP sessions in AS2

2006-08-21 Thread james
At 17:04 19/08/2006, Jamie P wrote: Cookies are automatically passed by the browser along with your http request to the server so sessions will work as normal in Flash (when using Flash embedded in a web page or even when viewing a swf in the browser??). Sessions seem to work normally (i.e. coo

Re: [Flashcoders] PHP sessions in AS2

2006-08-19 Thread Jamie P
Cookies are automatically passed by the browser along with your http request to the server so sessions will work as normal in Flash (when using Flash embedded in a web page or even when viewing a swf in the browser??). On 8/19/06, James Marsden <[EMAIL PROTECTED]> wrote: Hey, You request and w

Re: [Flashcoders] PHP sessions in AS2

2006-08-19 Thread James Marsden
Hey, You request and write the session variables to and from a PHP script via LoadVars. There's no inbuilt/prescribed method for managing and interacting with sessions using Flash (as far as I know), so you just need to have some basic class/function templates to talk between Flash and PHP.

[Flashcoders] PHP sessions in AS2

2006-08-19 Thread james
Hi I have searched everywhere for a general tutorial on how to handle PHP sessions with Flash. I have built lots of web applications that use HTML/PHP using sessions, in that situation session_id is automatically sent with the POST data. How is it done in flash. I have googled 'session_id