phpsql1 Posted May 16, 2007 Share Posted May 16, 2007 I am working on a web site using html, php and mysql. I am dividing the page to sections (Personal info section, Project Section, figure section…) I have each section on a separate page. I want to give the user the possibility to save the information he entered and finish it later on. Can any 1 throw some hints? Should I save the entered data in the same database and keep track of the (page/section) where he stopped at, or save the info in a separate (‘temporary’) database and once he’s done parse this data to the permanent database. Thanks Link to comment https://forums.phpfreaks.com/topic/51685-solved-save-data-issue/ Share on other sites More sharing options...
pikemsu28 Posted May 16, 2007 Share Posted May 16, 2007 i did something like this when i created an application process. i recorded the data into the same database. I have a column that captures a 1 or 2 to determin if the form has been saved or submitted. if the form was saved, a 1 is stored and the submit button is still visible. The 'Save' Button is replaced by an 'Update' button so the user can update the information. When the user submits the form, a 2 is captured and the 'Submit' Button disappears so the user cannot submit twice. i hope this is a push in the right direction. Link to comment https://forums.phpfreaks.com/topic/51685-solved-save-data-issue/#findComment-254615 Share on other sites More sharing options...
phpsql1 Posted May 16, 2007 Author Share Posted May 16, 2007 In deed it is. Thanks a lot for the info. Link to comment https://forums.phpfreaks.com/topic/51685-solved-save-data-issue/#findComment-254630 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.