Skip to content
Advertisement

How to delete multiple rows from mysql database with checkbox using PHP?

I try to delete my data in “admin” database, but the delete button does not function.

This is my top part

JavaScript

This is my checkbox code

JavaScript

and, this is my button code

JavaScript

This is my php function code

JavaScript

Advertisement

Answer

include all the input elements within your <form> tags: <form> all inputs are here </form>

update:

JavaScript

to (id doesn’t matter here):

JavaScript

and your button code:

JavaScript

to

JavaScript

set opening <form> tag to <form action="delete.php" method="post">

Note: I assume below codes are in delete.php file. if not replace “delete.php” with that name in above opening form tag.

your delete.php file:

JavaScript

Note: Since mysql_ will deprecate on future, better is use mysqli extension. But before use that, you have to enable it on your server. mysqli is a part of php and newer version of php has it but not enabled. To enable this, view php info page and find the path of php.ini file in “Loaded Configuration File” row on that page. You can see php info page by loading below php file in the browser:

JavaScript

open that php.ini file in a text editor and un-comment or add a line extension=php_mysqli.dll at the extensions list there. also search for “extension_dir” and open the directory it says and make sure php_mysqli.dll file is there. (you may have .so extension if you not use windows OS)

Then restart your server and you are done!

By Fred -ii-

Using mysqli_ with prepared statements is indeed a better and safer method. However, some will even suggest PDO, but even PDO doesn’t have some of the functionalities that mysqli_ offers; strangely that. Even PDO needs sanitization. Many think that using PDO will solve injection issues, which is false. -Thanks Fred.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement