PHP - Remove List With MySQLi
Submitted by razormist on Tuesday, November 19, 2019 - 23:56.
In this tutorial we will create a Remove List With MySQLi using PHP. This code will remove a MySQLi data in the HTML list when user click the icon button. The code use href or Hypertext Referencing to direct the user to go to other page that has been binded by an id, in order to remove a list data using DELETE query and adding the binded id in theWHERE clause. This a user-friendly program feel free to modify and use it to your system.
We will be using PHP as a scripting language that interepret in the webserver such as xamp, wamp, etc. It is widely use by modern website application to handle and protect user confidential information.
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!
Getting Started:
First you have to download & install XAMPP or any local server that run PHP scripts. Here's the link for 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.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
- if(!$conn){
- }
- ?>
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">
- <ul>
- <?php
- require'conn.php';
- 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';
- $movie=$_POST['movie'];
- }
- ?>
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';
- $id=$_REQUEST['id'];
- }
- ?>
Add new comment
- 109 views