Is there a way to send a DELETE request from a website, using xmlhttprequest or something similar?
xmlhttprequest
As someone mentioned above, jQuery will do this for you, via the following syntax:
$.ajax({ type: "DELETE", url: "delete_script.php", data: "name=someValue", success: function(msg){ alert("Data Deleted: " + msg); } });