How to Submit Multiple Form Inputs in PHP Tutorial

In this tutorial we will create a Multiple Form Inputs using PHP. This code will allow the user to insert multiples forms of data to the database server when the user clicks the submit button. The code use MySQLi INSERT query to store a data entry to the MySQLi server, after submitted the PHP script will compress the input array by using implode in order to store the data to the database in one submission. This is a user-friendly program feel free to modify and use it in your system.

We will be using PHP as a scripting language that interprets in the web server such as XAMPP, WAMP, etc. It is widely used by modern website applications 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/.

Then, open you XAMPP's Control Panel and start the Apache and MySQL.

Creating Database

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

tut1

Or you can also created the database table programmatically. To do that, in your PHPMyAadmin, navigate to the SQL Tab and copy/paste the source code below then click the Go Button.

  1. CREATE TABLE `member` (
  2. `parent` varchar(100) NOT NULL,
  3. `children` text NOT NULL

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_multiple_input');
  3.  
  4. if(!$conn){
  5. die("Error: Failed 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="comtainer-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 - Multiple Form Inputs</h3>
  16. <hr style="border-top:1px dotted #ccc;"/>
  17. <div class="col-md-4">
  18. <form method="POST" action="save.php">
  19. <div class="form-group">
  20. <label>Parent Name</label>
  21. <input type="text" name="parent" placeholder="Enter here..." class="form-control" required="required"/>
  22. </div>
  23. <br />
  24. <label>Children's Name</label> <button type="button" class="btn btn-success btn-sm" onclick="addEntry();"><span class="glyphicon glyphicon-plus"></span></button>
  25. <br /><br />
  26. <div id="children">
  27. <div class="form-group">
  28. <input type="text" name="children[]" placeholder="Enter here..." class="form-control" required="required"/>
  29. </div>
  30. </div>
  31. <center><button class="btn btn-primary" name="save"><span class="glyphicon glyphicon-save"></span> Submit</button></center>
  32. </form>
  33. </div>
  34. <div class="col-md-8">
  35. <div class="table-responsive">
  36. <table class="table table-bordered">
  37. <thead class='alert-info'>
  38. <tr>
  39. <th>Parent Name</th>
  40. <th>Children's Name</th>
  41. </tr>
  42. </thead>
  43. <tbody>
  44. <?php
  45. require'conn.php';
  46.  
  47. $query=mysqli_query($conn, 'SELECT * FROM `member`') or die(mysqli_error());
  48. while($fetch=mysqli_fetch_array($query)){
  49. ?>
  50. <tr>
  51. <td><?php echo $fetch['parent']?></td>
  52. <td><?php echo $fetch['children']?></td>
  53. </tr>
  54. <?php
  55. }
  56. ?>
  57. </tbody>
  58. </table>
  59. </div>
  60. </div>
  61. </div>
  62. <script src="js/script.js"></script>
  63. </body>
  64. </html>

Creating the Main Function

This code contains the main function of the application. This code will insert multiple form inputs when the button is clicked. To make this just copy and write these blocks of codes below inside the text editor, then save it as save.php.

  1. <?php
  2. require_once 'conn.php';
  3.  
  4. if(ISSET($_POST['save'])){
  5. $parent = $_POST['parent'];
  6. $children = $_POST['children'];
  7.  
  8. $childrens=implode(', ', $children);
  9.  
  10. mysqli_query($conn, "INSERT INTO `member` VALUES('', '$parent', '$childrens')") or die(mysqli_error());
  11.  
  12.  
  13. header("location: index.php");
  14. }
  15. ?>
script.js

Note: To make this code work make sure you save this file inside the js directory.

  1. function addEntry(){
  2. var entry="<input type='text' name='children[]' placeholder='Enter here...' class='form-control' required='required'/>";
  3. var element=document.createElement("div");
  4. element.setAttribute('class', 'form-group');
  5. element.innerHTML=entry;
  6. document.getElementById('children').appendChild(element);
  7. }

DEMO

There you have it we successfully created Multiple Form Inputs using PHP. I hope that this simple tutorial helps you with what you are looking for. For more updates and tutorials just kindly visit this site.

Enjoy Coding!

Comments

Add new comment