Howdy! This is a 2-part question:
There's this form that is created to collect a variety of information (4 pages):
This information is then passed on to another form that will display and calculate an estimate on a web page.HTML Code:Page 1: email: password: Page 2: company name: first name: last name: address: state: zip: phone: Page 3: project name: is this a new site: (check box) Yes (check box) No if no, current URL: if yes, desired URL: Page 4: what kind of pages would you like: (check box) Home (check box) Contact (check box) Sitemap (check box) Feedback and so on other:
I'm guessing I'm going to have a many-many relationship database, but I don't know how to store the multiple-checked values (the ones that the customer has clicked) in the customer's data table.
Some ideas would be appreciated!HTML Code:Theoretical tables: Table: rsClient Field: rs_id Field: fname Field: lname Field: company_name Field: address Field: city Field: state Field: zip Field: phone Field: email Table: pwds Field: pwds_id Field: pwd Table: rsProject Field: project_id Field: projectName Field: curSite Field: cureURL Field: desiredURL Table: rsPages (optional text they want to add) Field: pages_id Field: other Table: rsOptions (this table would have the id and list of optional values) Field: option_id Field: option (i.e., contact, home, SEO, etc.) Field: cost Table: rsEstimate (this would be the info. collected and retrieved (in combination with the other tables) to display on the estimate page) Field: rs_id Field: pwds_id Field: project_id Field: pages_id Field: option_id
Thank you for your time!







Bookmarks