16.01.2016, 17:08
You don't need buttons to delete or edit data from MySQL.
Just use the queries: Delete, Update and Insert Into.
Example:
Just use the queries: Delete, Update and Insert Into.
Example:
PHP код:
DELETE * FROM `table` WHERE `id` = 23;
PHP код:
UPDATE `table` SET `IntCol` = 0 , `StrCol` = 'Test';