send multiple value from html form to ESP8266 with one submit button

Hi everybody
I searched and watched many example, but I can't find the example for send multiple value with one submit button (from html form )to ESP8266 to Serial port.
all example describes to send one value with one button from html form to ESP8266 like turn on and turn of LED.
I'm beginner and so glad to share with me some example link or describe to cover this scenario:

  1. create html form (input date, time, some string, some int and some radio box with one submit button for form)
  2. user complete the form and click on submit button.
  3. all form date send to ESP8266 and updates variables.
  4. send variables to serial port as string
    thanks

your problems seem to be HTML protocol related.
i think you need to go to w3school.com
sorry i can't answer your question, maybe other members forum could help

thanks for your reply.
I knew about GET & POST.
I can't handle the url on ESP side (when GET used)
in all popular example, url like this : http://192.168.1.1/2/on
for me: http://192.168.1.1/user=x&age=19&date=1/10/2021&location=LA
thanks again

The ESP can handle it just fine, it will receive the http request and all the arguments are stored in the Server object for you to easily retrieve.

Check out [this guide](https://tttapa.github.io/ESP8266/Chap01 - ESP8266.html) first.

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.