CasperSecurity
<?php
session_start();
include '../../../../web/connection/connection.php';
$employee_experience_id = $_REQUEST['employee_experience_id'];
$employee_id = $_REQUEST['employee_id'];
$organisation = $_REQUEST['organisation'];
$designation = $_REQUEST['designation'];
$no_of_year = $_REQUEST['no_of_year'];
$db_handle = new DBController();
$newInsert = $db_handle->tableinsert("INSERT INTO employee_experience(employee_experience_id,employee_id,organisation,designation,no_of_year)
VALUES('$employee_experience_id','$employee_id','$organisation','$designation','$no_of_year')");
if($newInsert == TRUE){
echo 'Data Inserted Successfully';
}else{
echo 'Not Inserted' ;
}
?>