I have formatted all my PNG file to WebP file on my server. I need to update my database on phpMyAdmin:
images.png --> images.webp
images1.png --> images1.webp
images2.png --> images2.webp
UPDATE `gallery` SET `image_name` = '16240154071618319441c1.webp' WHERE `gallery`.`id` = 1;` ;
I have 5000 records to do.