PHP - Sum Column In Table Source Code

In this tutorial we will create a Sum Column In Table using PHP. This code will auto the sum of the total price of the product in the table column. The code use MySQLi SELECT query to display the row of data and by adding SUM as a selector to calculate the column total value. 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 interpret in the webserver such as xamp, wamp, etc. It is widely use 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 run PHP scripts. Here's the link for 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_sum_column, after that click Import then locate the database file inside the folder of the application then click ok. tut1

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.
  1. <?php
  2. $conn=mysqli_connect("localhost", "root", "", "db_sum_column");
  3.  
  4. if(!$conn){
  5. die("Error: Faile to connect to database!");
  6. }
  7. ?>

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.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5. <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6. </head>
  7. <body>
  8. <nav class="navbar navbar-default">
  9. <div class="containr-fluid">
  10. <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  11. </div>
  12. </nav>
  13. <div class="col-md-3"></div>
  14. <div class="col-md-6 well">
  15. <h3 class="text-primary">PHP - Sum Column In Table</h3>
  16. <hr style="border-top:1px dotted #ccc;"/>
  17. <div class="col-md-4">
  18. <form method="POST" action="add_product.php">
  19. <div class="form-group">
  20. <label>Brand</label>
  21. <input type="text" name="brand" class="form-control" required="required"/>
  22. </div>
  23. <div class="form-group">
  24. <label>Product</label>
  25. <input type="text" name="product" class="form-control" required="required"/>
  26. </div>
  27. <div class="form-group">
  28. <label>Price</label>
  29. <input type="number" min="0" name="price" class="form-control" required="required"/>
  30. </div>
  31. <center><button class="btn btn-primary" name="add">Add Product</button></center>
  32. </form>
  33. </div>
  34. <div class="col-md-8">
  35. <table class="table table-bordered">
  36. <thead class="alert-info">
  37. <tr>
  38. <th>Brand</th>
  39. <th>Product</th>
  40. <th>Price</th>
  41. </tr>
  42. </thead>
  43. <tbody>
  44. <?php
  45. require_once 'conn.php';
  46. $query = mysqli_query($conn, "SELECT * FROM `product`") or die(mysqli_error());
  47. while($fetch = mysqli_fetch_array($query)){
  48. ?>
  49. <tr>
  50. <td><?php echo $fetch['brand']?></td>
  51. <td><?php echo $fetch['product']?></td>
  52. <td><?php echo $fetch['price']?></td>
  53. </tr>
  54. <?php
  55. }
  56. ?>
  57.  
  58. </tbody>
  59. </table>
  60. <br />
  61. <div class="alert alert-warning">Product List</div>
  62. <?php
  63. require_once 'conn.php';
  64. $query = mysqli_query($conn, "SELECT brand, product, SUM(price) as total FROM `product` GROUP BY `brand`") or die(mysqli_error());
  65. while($fetch = mysqli_fetch_array($query)){
  66. ?>
  67. <ul style="list-style-type:none;">
  68. <li><?php echo $fetch['brand']." - Total Price: <span class='text-info'>".$fetch['total']."</span>"?></li>
  69. </ul>
  70. <?php
  71. }
  72. ?>
  73.  
  74.  
  75. </div>
  76. </div>
  77. </body>
  78. </html>

Creating PHP Query

This code contains the php query of the application. This code will store the product information to the database server. To do that just copy and write this block of codes inside the text editor, then save it as add_product.php.
  1. <?php
  2. require_once 'conn.php';
  3.  
  4. if(ISSET($_POST['add'])){
  5. $brand = $_POST['brand'];
  6. $product = $_POST['product'];
  7. $price = $_POST['price'];
  8.  
  9. mysqli_query($conn, "INSERT INTO `product` VALUES('', '$brand', '$product', '$price')") or die(mysqli_error());
  10.  
  11. header("location: index.php");
  12. }
  13. ?>
There you have it we successfully created Sum Column In Table 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!

Add new comment