5744 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
2577 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
2792 Views
To work in PHP firstly understands the concept of (OOP) Object-Oriented Programming (PHP OOP), is a type of programming language added to php5, that helps in building complex, reusable web applications.
OOP is easy, simple and fast and easily debug, Once you figure out the basic ...
Anamika Gupta
Jan 31, 2018