File size: 946B
<html>
<title>PayOut</title>
<?php include "inc/def.php"; ?>
<?php include "inc/usrchk.php";
if($guest==1) {
header("location:index.php");
} ?>
<?php include "inc/header.php"; ?>
<div class="line">Get Payout</div>
<?php
$getu = mysql_query("SELECT * FROM users WHERE user='$user'");
$getu1 = mysql_fetch_array($getu);
$id = $getu1['id'];
$bal = $getu1['bal'];
if($bal<3) {
print "<center><div class='prob'>You shoud have atleast $3 to get payout.<br><br>You do not have enought balance.</div></center>";
} else {
$doit = mysql_query("UPDATE users SET pay=1 WHERE id='$id'") or die("Sorry. We have some technical problem. - XtremeiTech.CoM");
if($doit) {
print "<center><div class='done'>Thank you for payout request.<br><br>We are executing your request. Set Your Wapka Username in Edit Account Option. You will recieve your payment of $bal in next 72hours.<br>Thank You.</div></center>";
}
}
?>
<?php include "inc/footer.php"; ?>
</html>