Hello everybody
I have buy a code php Script Double Bitcoin at
https://bitify.com/auctions/download-misc/bitcoin-ponzi-doubler-script-152270/But after installation Bitcoin addresses are not displayed
as
https://cache-bitify.netdna-ssl.com/wp-content/uploads/2015/07/ponzi-1000x647.jpgIt only view
Send Bitcoins to: (Min - 0.001 BTC, max - unlimited)
And i want after deposit, they will find the address Bitcoin to send
as website:
http://bitcoin-multiplier.com/I see in
$Pay = json_decode(file_get_contents('
https://blockchain.info/api/receive?method=create&address='.WALLET.'&callback='.urlencode(URL.'/deposit?u='.$_POST['wallet'].'&secret='.Secret($_POST['wallet']).'&ref='.$REF)));
This is code php
<?php
if ($_POST['enter'] and $_POST['wallet'] and !$_SESSION['LOGIN_IN'] != 1 and $_COOKIE['UNIQID']) {
AntiBot();
$_POST['wallet'] = Form($_POST['wallet']);
ValidateBTC($_POST['wallet']);
$Row = mysqli_fetch_assoc(mysqli_query($CONNECT, "SELECT `uid` FROM `users` WHERE `wallet` = '$_POST[wallet]'"));
if ($Row['uid']) Message(1, 'Account <b>'.$_POST['wallet'].'</b> already exists.');
$Row = mysqli_fetch_assoc(mysqli_query($CONNECT, "SELECT `wallet` FROM `users` WHERE `uid` = '$_COOKIE[UNIQID]'"));
if ($Row['wallet']) Message(1, 'Account <b>'.$_COOKIE['UNIQID'].'</b> already exists.');
if ($_COOKIE['REF']) {
$REF = $_COOKIE['REF'];
$Row = mysqli_fetch_assoc(mysqli_query($CONNECT, "SELECT `uid` FROM `users` WHERE `uid` = '$REF'"));
if (!$Row['uid']) $REF = 0;
} else $REF = 0;
$Pay = json_decode(file_get_contents('https://blockchain.info/api/receive?method=create&address='.WALLET.'&callback='.urlencode(URL.'/deposit?u='.$_POST['wallet'].'&secret='.Secret($_POST['wallet']).'&ref='.$REF)));
$Pay = $Pay->input_address;
mysqli_query($CONNECT, "INSERT INTO `users` VALUES ('', '$_COOKIE[UNIQID]', '$_POST[wallet]', '$REF', '$Pay', NOW())");
$_SESSION['WALLET'] = $_POST['wallet'];
$_SESSION['PAY'] = $Pay;
$_SESSION['LOGIN_IN'] = 1;
Message(2,'Account has been successfully created. Address for payment generated.');
}
$LIMIT = LIMIT;
$_SESSION['LIMIT'] = array();
$Count1 = mysqli_fetch_row(mysqli_query($CONNECT, "SELECT COUNT(`id`) FROM `deposit` WHERE `status` = '0' AND `ref` = 0"));
if ($_SESSION['LOGIN_IN'] == 1) $Count2 = mysqli_fetch_row(mysqli_query($CONNECT, "SELECT COUNT(`id`) FROM `deposit` WHERE `uid` = '$_COOKIE[UNIQID]' AND `ref` = 0"));
else $Count2[0] = 0;
$Count3 = mysqli_fetch_row(mysqli_query($CONNECT, "SELECT COUNT(`id`) FROM `deposit` WHERE `status` != '0'"));
if ($Page == '/' or $Page == 'all') {
$_SESSION['POINT'] = 1;
$_SESSION['COUNTER'] = $Count1[0];
if ($Count1[0] > $LIMIT) $LOADER = 1;
$Query = mysqli_query($CONNECT, "SELECT `date`, `adress`, `sum`, `tx` FROM `deposit` WHERE `status` = '0' AND `ref` = 0 ORDER BY `date` DESC LIMIT 0, $LIMIT");
while ($Row = mysqli_fetch_assoc($Query)) {
//CЮДA
$DRAW .= '<tr><td>'.$Row['date'].'</td><td><a href="https://blockchain.info/address/'.$Row['adress'].'" target="blank">'.$Row['adress'].'</a></td><td><a href="https://blockchain.info/tx/'.$Row['tx'].'" target="blank">'.$Row['sum'].' BTC</a></td>'.TSP(MKT(date("Y-m-d H:i:s")), MKT(date("Y-m-d H:i:s", strtotime($Row['date'].' +100 hours')))).'<td>'.($Row['sum'] * DOUBLE_SUM).' BTC</td></tr>';
}
} else if ($Page == 'my') {
$_SESSION['POINT'] = 2;
$_SESSION['COUNTER'] = $Count2[0];
if ($Count2[0] > $LIMIT) $LOADER = 1;
if ($_SESSION['LOGIN_IN'] != 1) Message(1, 'You must log in.');
if (!$Count2[0]) Message(2, 'Your investment is not found.');
$Query = mysqli_query($CONNECT, "SELECT `date`, `adress`, `sum`, `tx`, `status` FROM `deposit` WHERE `uid` = '$_COOKIE[UNIQID]' AND `ref` = 0 ORDER BY `date` DESC LIMIT 0, $LIMIT");
while ($Row = mysqli_fetch_assoc($Query)) {
//И CЮДA
if ($Row['status'] == '0') $COBRA = TSP(MKT(date("Y-m-d H:i:s")), MKT(date("Y-m-d H:i:s", strtotime($Row['date'].' +100 hours'))));
else $COBRA = '<td>'.Status($Row['status']).'</td>';
$DRAW .= '<tr><td>'.$Row['date'].'</td><td><a href="https://blockchain.info/address/'.$Row['adress'].'" target="blank">'.$Row['adress'].'</a></td><td><a href="https://blockchain.info/tx/'.$Row['tx'].'" target="blank">'.$Row['sum'].' BTC</a></td>'.$COBRA.'<td>'.($Row['sum'] * DOUBLE_SUM).' BTC</td></tr>';
}
} else if ($Page == 'payouts') {
$_SESSION['POINT'] = 3;
$_SESSION['COUNTER'] = $Count3[0];
if ($Count3[0] > $LIMIT) $LOADER = 1;
$Query = mysqli_query($CONNECT, "SELECT `date`, `adress`, `sum`, `status`, `tx` FROM `deposit` WHERE `status` != '0' AND `ref` = 0 ORDER BY `date` DESC LIMIT 0, $LIMIT");
while ($Row = mysqli_fetch_assoc($Query)) {
$DRAW .= '<tr><td>'.$Row['date'].'</td><td><a href="https://blockchain.info/address/'.$Row['adress'].'" target="blank">'.$Row['adress'].'</a></td><td>'.$Row['sum'].' BTC</td><td>'.Status($Row['status']).'</td><td><a href="https://blockchain.info/tx/'.$Row['tx'].'" target="blank">'.($Row['sum'] * DOUBLE_SUM).' BTC</a></td></tr>';
}
}
Head('Bitcoin Double');
echo '<div class="content2">
<div class="Menu">
<a href="/all">All Investments ('.$Count1[0].')</a>
<a href="/my">My Investments ('.$Count2[0].')</a>
<a href="/payouts">Payouts ('.$Count3[0].')</a>
</div>';
?>
<script>
$(document).ready(function(){setInterval(function(){$('.countdown').each(function(){var time=$(this).text().split(':');var timestamp=time[0]*3600+ time[1]*60+ time[2]*1;timestamp-=timestamp>0;var hours=Math.floor(timestamp/3600);var minutes=Math.floor((timestamp- hours*3600)/ 60);
var seconds=timestamp- hours*3600- minutes*60;if(hours<10){hours='0'+ hours;}
if(minutes<10){minutes='0'+ minutes;}
if(seconds<10){seconds='0'+ seconds;}
$(this).text(hours+':'+ minutes+':'+ seconds);});},1000);})
$(document).ready(function(){$('#loader').click(function(){$.get('/loader', function(data){$('#space').append(data)})})});
</script>
<table id="space">
<tr><th>DATE</th><th>ADDRESS</th><th>DEPOSIT AMOUNT</th><th>TIME LEFT</th><th>PAY AMOUNT</th></tr>
<?php if ($LOADER) $WOW ='<div id="loader">LOAD MORE</div>';
echo $DRAW .'</table>'.$WOW ?>
</div>
<div class="footer">Copyright © 2015. All Rights Reserved</div>
</div>
<?php JQMessageShow()?>
</body>
</html>
but how do not know it works?
hope everyone help
Thanks