File: /home/durgeshpandey215/public_html/zeeroprice.skilladders.com/pg.php
<? require "application_top.php";
$id = isset($_REQUEST['id'])? decode($_REQUEST['id']):"";
if(!$id){ $_SESSION['msg'] = "Invalid access";
header('location:index.php');exit;
}
$db->where('id',$id);
$rowpoints = $db->getOne('pointspackage');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Wallet</title>
<!-- Meta tag Keywords -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<meta name="keywords" content="" />
<? require "scripts.php";?>
</head>
<body>
<? $pagename = "wallet"; require "header.php";?>
<h1>Payment Gateway</h1>
<div class="w3-card w3-white w3-padding" style="font-size:19px;">
Pacakge selected : <?=$rowpoints['packagename'];?>
<br/>
Coins : <?=$rowpoints['points'];?>
<br/>
Cost : <?=currSign($rowpoints['currency']);?>.<?=$rowpoints['cost'];?>
<br/><br/>
<form action="pgint.php?id=<?=encode($id);?>" id="commonform" method="post">
<input type="hidden" name="packid" value="<?=$rowpoints['id'];?>">
<button type="submit" class="w3-btn w3-pink">Pay Now</button>
</form>
</div>
<br/><br/>
<!-- //Vertically centered Modal -->
<? require "footer.php";?>