View file public_html/vipadz/deduct.php

File size: 843B
<?php

/************************************

Script : Adnetwork
Website : http://facebook.com/pranto007

Script is created and provided by Pranto (http://facebook.com/pranto007)
**************************************/

include '../db.php';
include '../functions.php';

headtag("$SiteName - Deduct Balance");

if($adminlog==1){

 $uid=formget("id");

 echo '<div class="title">Deduct Balance</div>';

echo '<div class="ad"><img src="/arrow.png" height="16" width="16"/> <a href="deductmainbal.php?id='.$uid.'">Deduct Main Balance</a></div>';

echo '<div class="ad"><img src="/arrow.png" height="16" width="16"/> <a href="deductapprovedbal.php?id='.$uid.'">Deduct Approved Balance</a></div>';
   
 echo '<a href="user.php?id='.$uid.'"><div class="ua">Go Back</div></a>';
 include '../foot.php';
 }
 else {
  header('Location:login.php');
 }
 ?>