In this tutorial, we will create a Display User Details using PHP. This code can display complete detail of a user in the table when the user clicks the view detail button. The system uses the MySQLi SELECT query to show specific row data in the table that bound in a button to view the complete details in the modal dialog. This a user-friendly program. Feel free to modify and use it for your system.
We will be using PHP as a scripting language and interpreter that is used primarily on any web server, including camp, wamp, etc. It is being used to any popular websites because of the modern approach as its today.
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_detail, after that, click Import, then locate the database file inside the folder of the application then click ok.
<?php $conn=mysqli_connect("localhost", "root", "", "db_detail"); 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 - Display User Details</h3> <hr style="border-top:1px dotted #ccc;"/> <div class="col-md-4"> <form method="POST" action="save.php"> <div class="form-group"> <label>Firstname</label> <input type="text" class="form-control" name="firstname" required="required"/> </div> <div class="form-group"> <label>Lastname</label> <input type="text" class="form-control" name="lastname" required="required"/> </div> <div class="form-group"> <label>Gender</label> <select name="gender" class="form-control" required="required"> <option value="Male">Male</option> <option value="Female">Female</option> </select> </div> <div class="form-group"> <label>Age</label> <input type="number" class="form-control" name="age" required="required"/> </div> <div class="form-group"> <label>Address</label> <input type="text" class="form-control" name="address" required="required"/> </div> <div class="form-group"> <label>Username</label> <input type="text" class="form-control" name="username" max="20" required="required"/> </div> <div class="form-group"> <label>Password</label> <input type="password" class="form-control" name="password" max="12" required="required"/> </div> <center><button class="btn btn-primary" name="save">Save</button></center> </form> </div> <div class="col-md-8"> <table class="table table-bordered"> <thead class="alert-info"> <tr> <th>Firstname</th> <th>Lastname</th> <th>Action</th> </tr> </thead> <tbody> <?php require'conn.php'; $query=mysqli_query($conn, "SELECT * FROM `user`") or die(mysqli_error()); while($fetch=mysqli_fetch_array($query)){ ?> <tr> <td><?php echo $fetch['firstname']?></td> <td><?php echo $fetch['lastname']?></td> <td><button type="button" class="btn btn-success" data-toggle="modal" data-target="#form_modal<?php echo $fetch['user_id']?>">View Details</button></td> </tr> <div class="modal fade" id="form_modal<?php echo $fetch['user_id']?>" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h3 class="modal-title">User Details</h3> </div> <div class="modal-body"> <div class="col-md-2"></div> <div class="col-md-8"> <div class="col-md-6"> <h4>Firstname</h4> <p><?php echo $fetch['firstname']?></p> </div> <div class="col-md-6"> <h4>Lastname</h4> <p><?php echo $fetch['lastname']?></p> </div> <br style="clear:both;"/> <div class="col-md-6"> <h4>Gender</h4> <p><?php echo $fetch['gender']?></p> </div> <div class="col-md-6"> <h4>Age</h4> <p><?php echo $fetch['age']?></p> </div> <br style="clear:both;"/> <div class="col-md-12"> <h4>Address</h4> <p><?php echo $fetch['address']?></p> </div> <br style="clear:both;"/> <div class="col-md-6"> <h4>Username</h4> <p><?php echo $fetch['username']?></p> </div> <div class="col-md-6"> <h4>Password</h4> <p>************</p> </div> </div> </div> <div style="clear:both;"></div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> Close</button> </div> </div> </div> </div> <?php } ?> </tbody> </table> </div> </div>
Creating PHP Query
This code contains the php query of the application. This code will store the form inputs to the MySQLi server. To do that just copy and write this block of codes inside the text editor, then save it as save.php.
<?php require_once'conn.php'; if(ISSET($_POST['save'])){ $firstname=$_POST['firstname']; $lastname=$_POST['lastname']; $gender=$_POST['gender']; $age=$_POST['age']; $address=$_POST['address']; $username=$_POST['username']; $password=$_POST['password']; mysqli_query($conn, "INSERT INTO `user` VALUES('', '$firstname', '$lastname', '$gender', '$age', '$address', '$username', '$password')") or die(mysqli_error()); header("location: index.php"); } ?>
There you have it we successfully created Display User Details 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!
Hey! I know this is kind of off topic but I was wondering which blog platform are you using for this website? I’m getting fed up of WordPress because I’ve had problems with hackers and I’m looking at alternatives for another platform. I would be great if you could point me in the direction of a good platform.