From 3d98b9a290c0c729708ce0ae785558c2fb3a0fac Mon Sep 17 00:00:00 2001 From: Daniel Mason Date: Mon, 2 Jan 2017 22:15:14 +1300 Subject: [PATCH] More styling --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 {