sending data from adruino to php web page

Hi everyone
Please, can you help me how to logging data from UNO to php web page
i need just a general code for arduino for this mission
don't care aboaut php code

thanks

Please, can you help me how to logging data from UNO to php web page

A "web page" is the output of a script on a server. You can NOT send data to a web page.

You can make the Arduino, with ethernet shield, act a server, serving up a page with sensor data.

You can make the Arduino, with ethernet shield, act as a client, making a GET request, possibly containing data, to execute a PHP script on a server.

But, you can't inject data into the output of a script on a server.