# Save Cookie Data
locked
group
This option allows you to store user input inside a cookie, after the form is submitted. The name of the input will be used as the name of the cookie.
For example, let‘s say your form input looks like this:
<input type="text name="address" />
... and a user enters "123 Main St" as their address. When the form is submitted - a cookie named address
will be created with a value of 123 Main St
. Note that you can update the name of the input using the input name option.
Value | Description |
---|---|
On | Enables the save cookie functionality |
Off | Disables the save cookie functionality |
# Side Effects
None.