tags:

views:

67

answers:

2

i have a script (php+html) full of forms and inputs, after the form is submited via post i can give the user a code (like was a GET form) q=test&t=3&u=9&q2=test&t2=3&u2=9&q3=test&t3=3&3u=9, then the user can put this code in a textarea for editing what he previously submitted

how to transform the code inputed in the textarea (q&t&u) to work like if it was submitted like a normal POST? like if i where using $_POST['q'], $_POST['u'] but from that code submitted (like foreach)?

A: 

What I understand from your question is. that you want save form and later want to allow ur visitor to update these details. Best way to do is. you can generate a code(password) keep it in database along with record and provide it to your visitor

visitor will enter that code(unique) to get his record and can update that.

Ghost
+1  A: 
Alec