How to create a php form that can be filled in 2 separate sessions?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • immohito
    New Member
    • Jun 2012
    • 6

    #1

    How to create a php form that can be filled in 2 separate sessions?

    I have created a basic php feedback form with 20 fields. However, instead of sending an empty form for my client to fill, I want to pre determine some of the fields first. So basically, the php code should allow me to fill some of the fields first and then the submit button should send a link of a partially filled form to the client. The client will then complete the form and click submit, which will save data from all the fields back to the database. Can anyone help me on how this can be done? I am kind of stumped as I am new to php and both MySQL select and $_Get variable don't seem to do the trick. Thanks.
  • Rabbit
    Recognized Expert MVP
    • Jan 2007
    • 12517

    #2
    There's no need for special code. Just use regular HTML to define the value.

    Comment

    • immohito
      New Member
      • Jun 2012
      • 6

      #3
      Thanks for the response. But I'm afraid that I might not have explained the problem well. You see, I can't define the value using html because the fields are not static. The form has to be reused with new values and I can't expect the person using the form to take their client's feedback to go change the html every single time. Therefore, I need a better solution than that. Please suggest anything that can help me fill half the form first and then link the same form to a client who fills the rest and then saves the entire data in one tuple.

      Comment

      • Rabbit
        Recognized Expert MVP
        • Jan 2007
        • 12517

        #4
        Pass the data in GET to the second person that will fill out the rest.

        Comment

        Working...