
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php

//echo $_SERVER['DOCUMENT_ROOT'];
include './../api.php';

checkauth();

$str = date('i');

//echo $str;

$str =  substr($str, 0, 1);

$hash = md5($str);

if($_GET['key'] == $hash){

//echo 'The key is correct';

$import_data = get_file_imports_detail($_GET['id']);
//print_r($import_data);

$file_path ="/home/coreagen/service.hondasaudi.com/priceportal/admin/app/".$import_data['upload_file'];

//$load_data = load_excel_file($file_path);
$load_data_in_db = load_excel_file_in_db($file_path);

approve_file($_GET['id']);

//print_r($load_data_in_db);

ob_start();

//update_user($_POST);

echo "<script>";
echo "window.location = 'https://service.hondasaudi.com/priceportal/admin/app/price_list_review.php';";
echo "</script>";

header('https://service.hondasaudi.com/priceportal/admin/app/price_list_review.php');    
    
}else{

echo "<script>";
echo "window.location = 'https://service.hondasaudi.com/priceportal/admin/app';";
echo "</script>";
    
header('Location: https://service.hondasaudi.com/priceportal/admin/app');     
}



?>