$total = 0; global $total; function sum($item, $key) { global $total; $total += $item; } global $HTTP_POST_VARS, $questions; $code = $HTTP_POST_VARS["code"]; $missing = array(); foreach ( $questions as $q ) { // only radio questions need to be answered necessarily, the others // are multiple choices. if ( $q["func"] == "makeRadio" ) { if ( $HTTP_POST_VARS[$q["items"]] == "" ) { $missing[] = $q; } } } $num_missing = count($missing); $num_total = count($questions); $submitstr = "Submit survey"; $backstr = "Back to questions"; ?>