CasperSecurity
<?php
session_start();
include '../../../../web/connection/connection.php';
$marksheet_id = $_REQUEST['marksheet_id'];
$student_semester_section_id = $_REQUEST['student_semester_section_id'];
$marksheet_path = $_REQUEST['marksheet_path'];
$created_on = $_REQUEST['created_on'];
$created_by = $_REQUEST['created_by'];
$is_active = $_REQUEST['is_active'];
$db_handle = new DBController();
$newInsert = $db_handle->tableinsert("INSERT INTO marksheet(marksheet_id,student_semester_section_id,marksheet_path,created_on,created_by,is_active)
VALUES('$marksheet_id','$student_semester_section_id','$marksheet_path','$created_on','$created_by','$is_active')");
if($newInsert == TRUE){
echo 'Data Inserted Successfully';
}else{
echo 'Not Inserted' ;
}
?>