In this tutorial, we will create a Simple Update Table Row using PDO. This code can update data in the database server by the use of an advanced PDO query. The system uses a PDO to update specific data in the table row with user precaution for saving changes in the data.
We will be using PDO as a query scripting it an acronym for PHP Data Objects. It provides a data-access abstraction layer, which means that, regardless of which database you’re using, you use the same functions to issue queries and fetch data. This means developers can write portable code much more accessible.
Table of Contents
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 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_update_pdo; 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 $conn = new PDO( 'mysql:host=localhost;dbname=db_update_pdo', 'root', ''); 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 shown below.
index.php
<!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" type="text/css" href="css/bootstrap.css"> <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/> </head> <body> <nav class="navbar navbar-default"> <div class="container-fluid"> <a href="https://sourcecodester.com" class="navbar-brand">Sourcecodester</a> </div> </nav> <div class="col-md-3"></div> <div class="col-md-6 well"> <h3 class="text-primary">PHP - Simple Update Table Row Using PDO</h3> <hr style="border-top:1px dotted #ccc;" /> <table class="table table-bordered"> <thead class="alert-info"> <tr> <th>Firstname</th> <th>Lastname</th> <th>Username</th> <th>Password</th> <th>Action</th> </tr> </thead> <tbody> <?php require 'conn.php'; $sql = $conn->prepare("SELECT * FROM `user` ORDER BY `lastname` ASC"); $sql->execute(); while($row = $sql->fetch()){ ?> <tr> <td><?php echo $row['firstname']?></td> <td><?php echo $row['lastname']?></td> <td><?php echo $row['username']?></td> <td>********</td> <td><a class="btn btn-warning" href="edit.php?id=<?php echo $row['user_id']?>"><span class="glyphicon glyphicon-edit"></span> Edit</a></td> </tr> <?php } ?> </tbody> </table> </div> </body> </html>
edit.php
<!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" type="text/css" href="css/bootstrap.css"> <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/> </head> <body> <nav class="navbar navbar-default"> <div class="container-fluid"> <a href="https://sourcecodester.com" class="navbar-brand">Sourcecodester</a> </div> </nav> <div class="col-md-3"></div> <div class="col-md-6 well"> <h3 class="text-primary">PHP - Simple Update Table Row Using PDO</h3> <hr style="border-top:1px dotted #ccc;" /> <div class="col-md-3"></div> <div class="col-md-6"> <?php if(ISSET($_GET['id'])){ require_once 'conn.php'; $id = $_GET['id']; $sql = $conn->prepare("SELECT * FROM `user` WHERE `user_id`='$id'"); $sql->execute(); $row = $sql->fetch(); } ?> <form method="POST" action="update.php?id=<?php echo $id?>"> <div class="form-group"> <label>Firstname</label> <input class="form-control" type="text" value="<?php echo $row['firstname']?>" name="firstname"/> </div> <div class="form-group"> <label>Lastname</label> <input class="form-control" type="text" value="<?php echo $row['lastname']?>" name="lastname"/> </div> <div class="form-group"> <label>Username</label> <input class="form-control" type="text" value="<?php echo $row['username']?>" name="username"/> </div> <div class="form-group"> <label>Password</label> <input class="form-control" type="password" value="<?php echo $row['password']?>" name="password"/> </div> <div class="form-group"> <button class="btn btn-warning form-control" name="update">Save Changes</button> </div> </form> <?php $conn = null; ?> </div> </div> </body> </html>
Creating the Main Function
This code contains the main function of the application. This code will update a data when the button is clicked. To do this just kindly write these block of codes inside the text editor, then save it as update.php.
<?php require_once 'conn.php'; if(ISSET($_POST['update'])){ try{ $id = $_GET['id']; $firstname = $_POST['firstname']; $lastname = $_POST['lastname']; $username = $_POST['username']; $password = $_POST['password']; $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $sql = "UPDATE `user`SET `firstname` = '$firstname', `lastname` = '$lastname', `username` = '$username', `password` = '$password' WHERE `user_id` = '$id'"; $conn->exec($sql); }catch(PDOException $e){ echo $e->getMessage(); } $conn = null; echo "<script>alert('Succesfully updated an account!')</script>"; echo "<script>window.location='index.php'</script>"; } ?>