well since I don't know where you are getting the input from, I'll just create those variables.
<?php
//Define Variables
$fileSize = "";
$uploaded = "";
$downloaded = "";
$finalRatio = "0";
//Math
$totalDown = $fileSize + $downloaded;
$finalRatio = $uploaded / $totalDown...