array() ); foreach($a as $a_type) { $p['ethics'][$a_type] = NULL; } } $page_id = 's_ethics'; $action = ''; if(array_key_exists('action', $_POST)) { $action = $_POST['action']; } switch($action) { case 'save': if($closed) exit(); foreach($a as $f) { if(!array_key_exists($f, $_POST)) { $p['ethics'][$f] = NULL; } else { post_bool($p['ethics'][$f], $f); } } if($logged_in) { /* Only save to the db if the user is logged in, else just keep the fake project around */ project_save($mysqli, $p); incomplete_check($mysqli, $ret, $u, $page_id, true); } break; } $incomplete_fields = array(); if($logged_in) { incomplete_check($mysqli, $incomplete_fields, $u, $page_id); } else { incomplete_fields_check(NULL, $incomplete_fields, $page_id, $p); } $help = '
Please complete all the questions on this page about ethics'; sfiab_page_begin($u, "Project Ethics", $page_id, $help); function question($name, $text, $help, $v) { global $page_id; global $incomplete_fields; global $closed; $id = $page_id.'_form_'.$name; if(is_array($v)) { $v = $v[$name]; } $err = in_array($name, $incomplete_fields) ? 'border-color:red; border-width:2px;': ''; $d = $closed ? 'disabled="disabled"' : ''; $data = array(0=>'No', 1=>'Yes'); ?>