June 28, 200025 yr II am developing a website that requires the user to enter a name and a password stored on a filemaker database... The Html file, currently submits a find to the filameker db and checks for the correct user and password. However, if you enter the user name with no password, still finds the right record and returns a successful request html file. I tried java scripting, but I was not able to make the script work on verifying that the password field was not empty... Anyone know of a different way of implementing a login method that is secure? ( or more secure anyway) Rick [email protected]
June 29, 200025 yr Rick, I spent six frustrating weeks finding the answer to that question. I finally stumbled across it in a FileMaker document on their web site. I don't know the reference so I cannot give it. However, to save you grief try this in your <form>...</form> structure <input type="hidden" name="user's name field" value="=="><input type="text" name="user's name field" value="" size="25"> <input type="password" name="password field" value="=="><input type="text" name="password field" value="" size="12"> Also good for more than two-field searches. Peace Keith M. Davie
Create an account or sign in to comment