File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
examples/official-site/your-first-sql-website Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ WHERE :Username IS NOT NULL;
134
134
```
135
135
136
136
The snippet above uses an [`INSERT INTO SELECT` SQL statement](https://www.sqlite.org/lang_insert.html) to
137
- [safely](safety.sql) insert a new row into the `users` table when the form is submitted.
137
+ [safely](../ safety.sql) insert a new row into the `users` table when the form is submitted.
138
138
It uses a `WHERE` clause to make sure that the `INSERT` statement is only executed when the `:Username` parameter is present.
139
139
The `:Username` parameter is set to `NULL` when you initially load the page, and then SQLPage automatically sets it to the value
140
140
from the text field when the user submits the form.
You can’t perform that action at this time.
0 commit comments