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