PDA

View Full Version : Multipler User Login


Billionare
02-25-2008, 02:24 PM
I'm trying to create a login system using flash and I want make so that I can registar a name and password and it will remember there info and what they've done. I want it not so complicated but complicated enough that no one can hack it...(well no one can hack it easily).

DarkReality
02-25-2008, 02:26 PM
You want an XML file in a password protected folder on your server.

Billionare
02-25-2008, 02:32 PM
You want an XML file in a password protected folder on your server.
Ok, well explain?

Matt
02-25-2008, 05:56 PM
It sends the login information to the XML file (uploaded on your server) when registering. When logging in checks the inputed information against the list in the XML file and if it matches then it logs you in. Then just password protect the XML file on your server.
Now it sounds easy enough but it's not as simple as it seems.

arkhan
02-25-2008, 08:30 PM
for that you nees a serverside script..asp or php bein the most common..so you send the login info to that page using https protocol..http isnt safe..and from there you can just return true for a match or false if not..

Im not a fan of XML..its plain text..cant be safer than SQL..but if you can get n oracle database..not sure, but I belive its safer

Anoupaun
03-01-2008, 01:44 AM
I see, interesting.

magcius
03-03-2008, 04:41 PM
That won't work. Use a server-side PHP script to validate.