get("Campers") ?>

count('campers'); ?>

get("Adults") ?>

count('adults'); ?>

get("Youth") ?>

count('youth'); ?>

get("Total Income") ?>

$select("payments", "amount"); $total = 0.0; foreach ($amounts as $amt) { $total += $amt; } echo number_format($total, 2); ?>

get("Card Payments") ?>

$select("payments", "amountpaid"); $total = 0.0; foreach ($amounts as $amt) { $total += $amt; } echo number_format($total, 2); ?>