How send the GET variable to an external URL from the code on the NUCLEO-F767ZI MCU via the Ethernet cable?
I could start and run the HTTPd LWIP web-server with the CGI and SSI on the F767ZI board all right. The web-server works fine.
I also need something else. I need to call a URL on an external web-server, like this one: http://external-server.com/?v=12 .
On this external server there is a PHP script, which receives and handles the $_GET['v'] variable.
I need to call the URL from the code, without opening an HTML file on the F767ZI's web-server.
How can it be done? Where shall I search?
