Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.147.56.125
<?php
$v1 = $_GET['v1'];
$v2 = $_GET['v2'];
$v3 = $_GET['v3'];
$v4 = substr($v3,-1);
$v5 = '011';
$v6 = 'TR';
$v3 = substr($v3, 0, -1);
//mc_033_regno_exam_year_type.pdf
$filename = $v6.'_'.$v5.'_'.$v1.'_'.$v2.'_'.$v3.'_'.$v4.'.pdf';
$url = "http://oasis.logisys.org/ycm/doc_verify/".$filename;
Redirect($url, true);
function Redirect($url, $permanent = false)
{
if (headers_sent() === false)
{
header('Location: ' . $url, true, ($permanent === true) ? 301 : 302);
}
else
{
echo "header sent";
}
exit();
}
?>
|