diff --git a/index.php b/index.php index a768691..f2bfe0d 100755 --- a/index.php +++ b/index.php @@ -114,17 +114,17 @@ if (isset($_POST['mark'])) { } foreach ($day as $t=>$da) { - echo "".$t."
"; + echo "
".$t." - "; $total = 0; foreach($da['total'] as $t) { $total = $total+$t; } $total = round(($total/count($da['total'])),2); + echo $total."% Average
"; unset($da['total']); foreach($da as $c=>$d) { echo $d; } - echo $total."% Average

"; } } else {