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/www/zeeroprice.skilladders.com/wallet.php
<? require "application_top.php";
require "protect.php";
$db->where('userid',$_SESSION['useridsess']);
$rowu = $db->getOne('register',null,array('currency','bank','acno'));
$_SESSION['walletSess']=$rowu['points'];
?>
<!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>Your ZeeroPrice Gold <?=POINTS;?></h1>
	<br/>
	<div class="w3-card w3-white w3-padding">
	
	<center>
	
	<div style="background-image:url('<?=HTTP_SERVER;?>images/ZeeroGoldCoin.png');" class="goldCoin"><?=$_SESSION['walletSess'];?></div>
	
	<h2>  worth <?=currSign($rowu['currency']);?>. <?=costofPoints($_SESSION['walletSess']);?></h2>
	
	</div>
	<br/>
	<h1>Buy <?=POINTS;?></h1>	
	<br/>
	<div class="w3-card w3-white w3-padding">
		<div class="row">
		<?
		$db->where('istatus',1);
		$rowsp = $db->get('pointspackage');
		$color1= "dc3545";
		$color2= "00a650";
		$color3= "a0148e";
		$i = 1;
		foreach($rowsp as $rowp){
			$i = ($i==3)? 1 : $i+1;
		?>
		
		<div class="col-sm-12 col-lg-4">
			<div class="w3-card" style="width:100%;margin:5%;">
				<div class="w3-blue" style="width:100%;padding:2%;text-align:center;font-size:17px;color:#fff;">
				<?=$rowp['packagename'];?><br/>
				</div>
				<div style="width:100%;height:100px;padding:2%;text-align:center;background-color:#eee;font-size:17px;color:#000;">
				</br/><b><?=$rowp['points'];?> <?=POINTS;?> </b>
				</br/></br/><a style="background-color:#<?=${'color'.$i};?>;font-size:17px;color:#fff;padding:10px 20px;" href="pg.php?id=<?=encode($rowp['id']);?>">Buy for Rs.<?=$rowp['cost'];?>/-</a>
				</b>
				</div>
			</div>			
		</div>
		<?
		}
		?>
		</div>
	</div>
	<br/><br/>
	
<? require "footer.php";?>