Current File : /home/inlingua/public_html/faridabad/icentex/admin/timesheet_block_delete.php
<?php
ob_start();
include("header.php");
// Include the database connection details
require('dbConnection.php');

// Include common functions
require('commonFunc.php');

// Include common functions
require('globalVars.php');

// Include the table handler class
require('dbHandler.class.php');

// Init and connect to database
$dbObject = new dbHandler();
$dbObject->connect();
?>

<?php
$query="delete from timesheet_block where recNo='".$_REQUEST['kV']."'";
$result=mysqli_query($conn,$query);

header("Location:timesheet_block.select.php");
?>