Search found 1 match

by brucegregory
Wed Feb 20, 2013 10:36 pm
Forum: General
Topic: How to get percent downloaded using PHP API?
Replies: 0
Views: 3419

How to get percent downloaded using PHP API?

PHP CODE:

<?php
if (!function_exists("preprint")) {
function preprint($s, $return=false) {
$x = "<pre>";
$x .= print_r($s, 1);
$x .= "</pre>";
if ($return) return $x;
else print $x;
}
}


require_once( dirname( __FILE__ ) . '/class/TransmissionRPC.class.php' );

$rpc = new TransmissionRPC ...