<?php
session_start();
$tid = $_GET['tid'];
$tech = $_GET['tech'];
if(empty($tid)){
$_SESSION['log_err'] = "Unauthorised Operation";
header("Location: ../../account/login.php");;
}else{
header("Location: ../worker/workers/cancel.php?tid=$tid&tech=$tech&req=helpdesk");
}
?>