Welcome Guest, Not a member yet? Register   Sign In
Where should I put this file?
#3

[eluser]whygod[/eluser]
@Pert
It's not a controller, It's just an ordinary PHP.
And below are the codes of it.
Code:
<?php
if (isset($_GET['uid'])) {
  
  // Fetch the upload progress data
  $status = uploadprogress_get_info($_GET['uid']);
  
  if ($status) {
  
   // Calculate the current percentage
   echo round($status['bytes_uploaded']/$status['bytes_total']*100);
  
  }
  else {
  
   // If there is no data, assume it's done
   echo 100;
  
  }
}
?>

So where should I put an ordinary PHP codes?


Messages In This Thread
Where should I put this file? - by El Forum - 06-26-2013, 12:51 AM
Where should I put this file? - by El Forum - 06-26-2013, 01:20 AM
Where should I put this file? - by El Forum - 06-26-2013, 03:14 AM
Where should I put this file? - by El Forum - 06-26-2013, 03:19 AM
Where should I put this file? - by El Forum - 06-26-2013, 03:19 AM
Where should I put this file? - by El Forum - 06-26-2013, 09:58 PM



Theme © iAndrew 2016 - Forum software by © MyBB