5745 Views
Create records and send data in database table
To insert a data into a database we use the Insert query
add_student.php
<?php
if (isset($_POST['submit'])){
$name = $_POST['name'];
$address = $_POST['address'];
$class = $_POST['class'];
$connection = mysqli_connect('localhost', ...
Anamika Gupta
Sep 04, 2018
2578 Views
Introduction of Database
A database is a collection of program and tools that facilitate users to create and maintain the database. It provides the enterprise with centralized control of its operational data- which is one of its most relevant assets.
We will be using MYSQL it ...
Anamika Gupta
Aug 30, 2018