how can i take a input for a variable of Arduino from web page using ethernet shield.
3 steps:
- Have the arduino create a webserver
- Build an HTML page with a form (GET) offering a text field and serve that page upon initial connection
- Upon reception of the form GET request, parse the incoming URL to extract the text field value
There are countless examples on line
Start by trying and understanding the Ethernet library’s examples especially
thank you