is there a simple "create a key" script there?
i am thinking like this. get some kind int values of a string and use this value as the SEED to create a random number. this random number could be the Key.
say, if you give me "david@testtesttest.com" the key value will alway be for example 4211
if you give me "scott@testtesttest.com" the key value will always be 3231.
so a client can send me the e-mail and i return him a key.
then he can use the name and key to access the "member only" secured section.
when he came to the secured content area, i checked the e-mail and create a key value again and i will check to see if the key matchs the key he sent to me. if match, he is in.
i am thinking using this for a member only secured content area without big security requirements. no database of passwords needed here.
thanks.