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.
- <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1" />
Insert New Array Using PHP Source Code
'John', "lastname" => 'Smith' ); $_SESSION['member'] = $array; } ?>
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
- <!--?php
- $firstname=$_POST['firstname'];
- $lastname=$_POST['lastname'];
- "firstname" =--> $firstname, "lastname" => $lastname ); $member = $_SESSION['member']; $member['member'][]=$array; $_SESSION['member'] = $member; header("location: index.php"); } ?>
Add new comment
- 287 views