How to use Checkbox and move selected data to another page

When using a checkbox with label, how do you make it when the checkbox is selected and a submit button is pushed that the checked data is then moved to another page linked by the submit button?

You can do that by server side programming at on the next page, read from the server the info from the setting that was set. You can also use a cookie or localStorage with JavaScript to set the value on submission for either of those and then JS code to read the value from either of them and then display it. Unfortunately, I don't have much time to go further into detail or write something up either, you'll have to research it.

Saj