Remove List in PHP With MySQLi

January 20, 2021
PHP
remove list in php with mysql

Tutorial: Remove List in PHP With MySQLi with Source Code

About How to Remove List in PHP With MySQLi

In this tutorial, we will create a Remove List in PHP with MySQLi. This code will remove MySQLi data in the HTML list when the user clicks the icon button. The system uses href or Hypertext Referencing to direct the user to go to another page that has been bound by id to remove a list data using the DELETE query and to add the bound id in the where clause. This a user-friendly program. Feel free to modify and use it for your system.

We will be using PHP as a scripting language that is interpreted in the web server, such as xamp, wamp, etc. It is widely used by modern website application to handle and protect user confidential information.

Getting Started:

First, you have to download & install XAMPP or any local server that runs PHP scripts. Here’s the link for the XAMPP server https://www.apachefriends.org/index.html.

And this is the link for the jquery that I used in this tutorial https://jquery.com/.

Lastly, this is the link for the bootstrap that I used for the layout design https://getbootstrap.com/.

Creating Database

Open your database web server then create a database name in it db_list; after that, click Import, then locate the database file inside the folder of the application then click ok.

remove list in php with mysqli

Creating the database connection

Open your any kind of text editor(notepad++, etc..). Then just copy/paste the code below then name it conn.php.

<?php
    $conn=mysqli_connect("localhost", "root", "", "db_list");
 
    if(!$conn){
        die("Error: Failed to connect to database!");
    }
?>

Creating The Interface

This is where we will create a simple form for our application. To create the forms simply copy and write it into your text editor, then save it as index.php.

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1" />
        <link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
    </head>
<body>
    <nav class="navbar navbar-default">
        <div class="container-fluid">
            <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
        <div>
    </nav>
    <div class="col-md-3"></div>
    <div class="col-md-6 well">
        <h3 class="text-primary">PHP - Remove List With MySQLi</h3>
        <hr style="border-top:1px dotted #ccc;">
        <div class="col-md-9">
            <h2>MY MOVIE LIST <?php echo date("Y")?></h2>
            <ul>
                <?php
                    require'conn.php';
 
                    $query=mysqli_query($conn, "SELECT * FROM `movie`") or die(mysqli_error());
                    while($fetch=mysqli_fetch_array($query)){
                        echo "<li>".$fetch['movie_title']." <a href='remove.php?id=".$fetch['movie_id']."'><span class='glyphicon glyphicon-remove'></span></a></li>";
                    }
                ?>
            </ul>
        </div>
        <div class="col-md-3">
            <form method="POST" action="add.php">
                <div class="form-group">
                    <label>Enter a movie title</label>
                    <input type="text" name="movie" class="form-control" required="required"/>
                </div>
                <center><button class="btn btn-primary" name="add">Add</button></center>
            </form>
        </div>
    </div>
</body>	
</html>

Creating the PHP Query

This code contains the php query of the application. This code will store the POST inputs to the MySQLi database. To make this just copy and write these block of codes below inside the text editor, then save it as add.php

<?php
    require_once'conn.php';
 
    if(ISSET($_POST['add'])){
        $movie=$_POST['movie'];
 
        mysqli_query($conn, "INSERT INTO `movie` VALUES('', '$movie')") or die(mysqli_error());
 
        header('location: index.php');
    }
?>

Creating the Main Function

This code contains the main function of the application. This code will remove the MySQLi data in the list when the button is clicked. To make this just copy and write these block of codes below inside the text editor, then save it as remove.php

<?php
    require_once'conn.php';
 
    if(ISSET($_REQUEST['id'])){
        $id=$_REQUEST['id'];
 
        mysqli_query($conn, "DELETE FROM `movie` WHERE `movie_id`='$id'") or die(mysqli_error());
 
        header('location:index.php');
    }
?>

There you have it we successfully created Remove List With MySQLi using PHP. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Download Here

Leave a Reply

Your email address will not be published. Required fields are marked *