@@ -15,7 +15,7 @@ This example illustrates the main ones.
1515All the examples will implement the same simple form:
1616a form that asks for a person's name, email, and age.
1717
18- ## Storing the state in the database
18+ ## [ Storing the state in the database] ( ./database/ )
1919
2020You can store the state of the partially filled form in the database,
2121either in the final table where you want to store the data,
@@ -30,7 +30,7 @@ allowing you to have more relaxed column constraints in the partially filled dat
3030 - the website administrator needs to manage a dedicated table for the form state
3131 - old partially filled forms may pile up in the database
3232
33- ## Storing the state in cookies
33+ ## [ Storing the state in cookies] ( ./cookies/ )
3434
3535You can store each answer of the user in a cookie,
3636using the
@@ -48,7 +48,7 @@ and retrieve it on the next step using the
4848 - the user needs to have cookies enabled to fill in the form
4949 - if the user leaves the form before submitting it, the form state will keep being sent to all the pages he visits until he submits the form.
5050
51- ## Storing the state in hidden fields
51+ ## [ Storing the state in hidden fields] ( ./hidden/ )
5252
5353You can store the state of the partially filled form in hidden fields,
5454using ` 'hidden' as type ` in the [ form component] ( https://sql.datapage.app/component.sql?component=form#component ) .
0 commit comments