This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TM4C129ENCPDT Webserver GET implementation

Hello, I have successfully implemented a webserver , a simple webpage served from TM4C according to this example.

But now, I need to implement some user interactivity. Particularly, I need an user to be able to input some values to INPUT field in a html form, so that the MCU will see that value on Submit and do something with that value. I imagine that the GET method would be best for this,like - the client requests an URL ../config.htm?voltage=50 and TM4C will change the value of "voltage" variable to 50.

But I can not find appropriate example or similar project for TM4C, nor in TI-RTOS Networking. Only saw GET examples for http clients, not servers.

Can anybody point me in the right direction, or provide an example code please?