| Server IP : 74.208.236.52 / Your IP : 216.73.217.98 Web Server : Apache System : Linux infong527 4.4.400-icpu-115 #2 SMP Mon Jul 6 08:15:05 UTC 2026 x86_64 User : u44043973 ( 5404757) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/18/d194259149/htdocs/bonus1/admin/ |
Upload File : |
<?php
session_start();
include "../config.php";
if( session_is_registered("alogin") ) {
if(count($pay_with) == 1) {
if($pay_with['paypal'] == 1) $gateway = 'paypal';
if($pay_with['alertpay'] == 1) $gateway = 'alertpay';
$query = "select * from members where commission>0 and ".$gateway."_email != '' and deleted=''";
$result = mysql_query ($query)
or die ("Query failed");
if(@mysql_num_rows($result)) {
header("Content-type: text/plain" );
if(preg_match('/msie|(microsoft internet explorer)/i', $_SERVER['HTTP_USER_AGENT']))
{
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
}
else header('Pragma: no-cache');
header('Content-Disposition: attachment; filename="masspay-'.date("Y-m-d").'.txt"');
while($each = mysql_fetch_array($result)) {
echo $each[$gateway.'_email']." ".$each['commission']." USD ".$each['userid']." ".$sitename." Commissions\r\n";
}
} else echo "No commission found!";
} else echo "You need to select one 1 payment method.";
}
else
echo "Unauthorised Access!";
?>