Advertisement
JudeAustin

Check Balance Auto Send

Oct 24th, 2013
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2. $getinfo = shell_exec('./zetacoind getinfo');
  3. echo "<pre>$getinfo[0]->balance</pre>";
  4. if ($getinfo[0]->balance>="20")
  5.   {
  6.   echo "shell_exec('./zetacoind sendtoaddress blahblahblah')";
  7.   echo "Coins have been sent!";
  8.   }
  9. else
  10.   {
  11.   echo "Balance too low.";
  12.   }
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement