Hello everyone,
I'm sending data via URL with an ESP 32 device (GET request) to a remote server (000Webhost). My PHP page should only display my data with echo $_GET["data"]. But the data only appears on my Arduino Serial Print and not on the PHP server page.
During an old school project I already displayed ESP 32 data on a 000Webhost site but the configuration was different. The data was sent to a database and my php was making queries to the database. But currently, a database would be of no use to me. That's why I tried to access PHP directly.
Than you for helping me