Agreed. If it is practial to do so, you can take all the data that should be unique in your database (such as username, possibly email address or full name if you don't want the same person to be able to sign up with more than one username, etc) and put all that on the first screen. Then you can verify that against your database and either return a "duplicate" error or add a new record. Then all subsequent screens' data can be added to the database with an SQL UPDATE...WHERE USERNAME = XXXXX
Your final screen could then display and allow edit for all data (except the username and any other unique data you took on the first screen)
Ask if you need help on the code...
Main Topics
Browse All Topics





by: GaryC123Posted on 2003-05-26 at 19:31:50ID: 8587177
I would suggest adding the data to the database after each page is submitted and carry the new record ID thru the next pages so that you can then add the further data to the same record.