update folders

This commit is contained in:
2023-08-05 22:45:06 +03:00
parent c0aaec4c08
commit c2ef252c14
136 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
let data = new FormData();
data.append('item_id', 1);
data.append('image_name', 'NAME');
let xhr = new XMLHttpRequest();
xhr.open('POST', '/v.php?type=image_delete', true);
xhr.onload = function() { console.log(this.responseText); };
xhr.send(data);