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

include "landing_api.php";

is_logged_in();

$voucher =  $_GET['voucher'];

$UID = $_SESSION['UID'];

$redeem = redeem_prize($UID,$voucher);

if($redeem == '1'){

 $newURL = 'https://funlandksa.com/luckywheel/admin/portal/print-voucher.php?voucher='.$voucher;

header('Location: '.$newURL);
    
}else{

echo "Error Please Contact Service Provider";    
    
}

?>