This topic is locked

Entry verification - or double entry

8/25/2006 1:18:16 PM
PHPRunner General questions
jwoker author

Is there a way to force confirmation of a text field on an add page. ie

email:

verify email:


to help insure accurate information?

kujox 8/26/2006

Is there a way to force confirmation of a text field on an add page. ie

email:

verify email:


to help insure accurate information?


it might be best to do a calculated query so you get a blank input box
select `email`,

`email` as verify_email

From `records`
the you can compare in the after add event that the fields are the same and reject if they are not.