Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: credit_transfer_to_user.php
<?php /* * Transfer credits from your account to another IOS user * * NOTE: $username should be IOS Username but not Box or Dongle Serial Number ! * ordinary (but not always) $username length is 10 symbols */ require_once('iosapi.php'); $username = 'User'; $number_of_credits = 5; $note_for_sender = ''; // optional $note_for_receiver = ''; // optional $r = $API->CreditMoveTo($username, $number_of_credits, $note_for_sender, $note_for_receiver); echo print_r($r, true); /* [Comment] => User <= Username or error message [id] => 0 <= Number of Credits transferred to Username [Error] => 0 <= means Credits transferred well [Operation] => CreditMoveTo <= operation name [Debug] => 0 */