Is it possible to log in to a Flash app with a PHP log-in form? I was thinking it could work something like this:
- PHP form creates a new session
- connect to the user database, validate.
- store the log-in information in session variables
- load the swf
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think if you store your sessions in the database in an open format like JSON or XML then you can have your SWF app lod that data from the database. The SWF app should also be able to get the cookies from the broswer so you can find the cookie that stores the session name check the database, or file system if you keep it in there and then work magic from there.