In one esp8266 teng a simple web with a form that there are 2 radio type selection buttons and two input boxes and the form submission button.
This would be the default scheme 1:
radio button 1: checked
radio button 2: not checked
Text in the input box 1: Hello
The client loads the web modifies the values and sends them, diagram 2:
radio button 1: not checked
radio button 2: checked
Text in input box 1: goodbye
(It is assumed that the new values are received and stored in variables in the esp8266)
As it is done so that when the client loads the page again, the data of the schema 2 will appear, which is what has been modified and saved and not those of the schema 1 that were the ones that were by default.
How variable values are embedded within the html text to modify the selection of the radio buttons and the input box text.
Greetings and thank you.