I want to allow users to login by using a parameter on the URL.
I would match the parameter to the user table and log them in automatically.
I realize this would be a security issue, but I can maintain the parameter value so I won’t be a problem.
So maybe the url is www.mysite.com/&parm=A6Em6 and that would login John Smith.
Again, I’ll take care of the security I just need to know how to grab the url, check against the user table, and log them in as that person if the parameter is found.
Thanks in advance,
Alan