reset eeprom through webpage

Hello everyone im stucked with a small problem. im using esp32 on arduino IDE, i want to reset eeprom address contents to 0 through webpage. any code or link how i can do would be a great help. secondly i didn't wrote the code yet because i didn't find anything on esp32 forum. any help or code would be a great help for me.

thanks in advance

The ESP32 doesn't HAVE eeprom.
There may be some libraries that emulate it using the flash, though. And you can always use dirt-cheap I2C EEPROMs (24 series - everyone and their mom makes compatible I2C eeprom chips, the part numbers vary depending on the manufacturer, but generally include the number 24, and the size of the part in KBit - ex, AT24c512 for a 512kbit EEPROM made by Atmel)

In any event, you would just make it react to a GET request against a specific url and erase the EEPROM - there's nothing special about this task; it's the same as reacting to any other request by doing something.

Edit: Also just realized this is in installation/troubleshooting. Did you read the top of the forum? You know where it says that that section is not for problems with your project? I have reported thread to mods and asked them to move it to the correct section.