MOON
Server: Apache
System: Linux ip-208-109-13-31.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els4.x86_64 #1 SMP Sat Aug 31 06:58:57 UTC 2024 x86_64
User: durgeshpandey215 (1013)
PHP: 8.1.29
Disabled: NONE
Upload Files
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";?>