Hey I need to be able to delete a record in mysql from a web page rather then from the admin how would I go about deleting the whole record not just the data in the fields?
Thanks
Use a delete query. See http://www.mysql.com/doc/en/DELETE.html
DELETE FROM table WHERE id = ...