</p>
      </section>

      <section class="numberContainer">
        <span class="top">Average Job Size </span>
        <p> <?php 
$avgJobSize = $numPieces / $numQuotes;
echo number_format($avgJobSize, 1);
?>
 </p>
      </section>

      <section class="numberContainer">
        <span class="top">Median Job Size </span>
        <p><?php 
echo getMedium($quotes);
?>
</p>
      </section>

      <section class="numberContainer">
        <span class="top">MB of Customer Files </span>
        <p> <?php 
echo $filesSize = countBytes($quotes);
?>
 </p>
      </section>

      <section class="numberContainer">
        <span class="top">Number of Customers</span>
        <p> <?php 
Пример #2
0
    ?>
</span>
   <p> <?php 
    $avgJobSize = $numPieces / $numQuotes;
    echo number_format($avgJobSize, 1);
    ?>
 </p>
 </section>

 <section class="numberContainer">
   <span class="top">Median Job Size in <?php 
    echo $textMonths[$currentMonth - 1];
    ?>
</span>
   <p><?php 
    echo getMedium($testing);
    ?>
</p>
 </section>

 <section class="numberContainer">
   <span class="top">MB of Customer Files in <?php 
    echo $textMonths[$currentMonth - 1];
    ?>
</span>
   <p> <?php 
    echo $filesSize = countBytes($testing);
    ?>
 </p>
 </section>
?>
</span>
   <p> <?php 
$avgJobSize = $numPieces / $numQuotes;
echo number_format($avgJobSize, 1);
?>
 </p>
 </section>

 <section class="numberContainer">
   <span class="top">Median Job Size in <?php 
echo $Theyear;
?>
</span>
   <p><?php 
echo getMedium($monthlyQuotes);
?>
</p>
 </section>

 <section class="numberContainer">
   <span class="top">MB of Customer Files in <?php 
echo $Theyear;
?>
</span>
   <p> <?php 
echo $filesSize = countBytes($monthlyQuotes);
?>
 </p>
 </section>