Your IP : 3.137.161.247
<?php
session_start(); ob_start();
require_once('lib/connection.php');
if(!isset($_SESSION['user_id'])){ header('location: login.php'); exit; }
// $pro->autoLogActivation();
//remove wallet 12 to 15
//set stage = 1 where stage > 1
//$pro->promoteUserToStage2All();
//$pro->promoteUserToStage3All();
// $pro->payMatrixBonusAllStage(3); //for 3,2, 2 and 3
$i=1; $e=0; $sql = $db->query("SELECT id FROM user WHERE stage>1");
while($row = mysqli_fetch_assoc($sql)){
$id= $row['id'];
if($pro->wallet($id)<0){$e=$i++; echo userName($id,'user').'<br>'; }
}
echo $e;
?>