Insert New Array Using PHP

In this tutorial we will create a Insert New Array using PHP. This code can insert new array when the user submitted the form input. The code use PHP SESSION to store an array object in order display the data and to send it using POST request that will be store as a new array object using array_push(). This is a user-friendly kind of program feel free to modify it. We will be using PHP as a scripting language and interpreter that is used primarily on any webserver including xamp, wamp, etc. It is being use to any famous websites and it has a modern technology that can easily be use by the next generation.

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 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. <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1" />
  2. <link href="css/bootstrap.css" rel="stylesheet" type="text/css" />

 

Insert New Array Using PHP Source Code


'John', "lastname" => 'Smith' ); $_SESSION['member'] = $array; } ?>
$list){ ?>
Firstname Lastname

 

Creating the Main Function

This code contains the main function of the application. This code will insert new array 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 insert.php

  1.  <!--?php
  2.         session_start();
  3.        
  4.         if(ISSET($_POST['insert'])){
  5.                 $firstname=$_POST['firstname'];
  6.                 $lastname=$_POST['lastname'];
  7.                
  8.                 $array= array(
  9.                         "firstname" =--> $firstname, "lastname" =&gt; $lastname ); $member = $_SESSION['member']; $member['member'][]=$array; $_SESSION['member'] = $member; header("location: index.php"); } ?&gt;
There you have it we successfully created Insert New Array 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