are the () bad? i just want to devide the $_GET['downloaded'] by (8 1024 1024)
I want to write the $peer_up and $peer_down to a file
wich should be in total 8 in strlengh
so I can read it:
$x = fread($handle, filesize($filename));
$downloaded = join('', unpack("N", substr($x, 0, 4)));
$uploaded = join('', unpack("N", substr($x, 4, 4)));
thanks for your time 🙂