submit on a form |
Well, you can save the person's email address in a hidden input field.
The value of the input field would be populated from the url that was sent to the person's email address. For example, Code: http://localhost/CI/[email protected] So, when the user clicks on the link from his/her email address, it redirects to the survey form where you can easily populate the hidden input field with the $_GET['user-email'] superglobal. I assume you already apply urlencode() and other security functions to the link before sending to the user(s). |
Messages In This Thread |
submit on a form - by richb201 - 11-27-2020, 07:02 AM
RE: submit on a form - by sammyskills - 11-27-2020, 07:14 AM
RE: submit on a form - by richb201 - 11-27-2020, 07:20 AM
RE: submit on a form - by sammyskills - 11-27-2020, 07:46 AM
RE: submit on a form - by richb201 - 11-27-2020, 08:13 AM
RE: submit on a form - by sammyskills - 11-27-2020, 08:38 AM
RE: submit on a form - by InsiteFX - 11-28-2020, 12:57 AM
RE: submit on a form - by richb201 - 11-28-2020, 05:25 AM
|