Copyright (C) 2011 Dennis Spanogle This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ ?> SFIAB Evaluations Criteria Editor Criteria Editor

"; if($_POST['action']=="edit") { if($_POST['scheme_id'] && $_POST['criteria_id'] && $_POST['criteria_weight'] && $_POST['criteria_name'] ) { //$q=mysql_query("SELECT id FROM eval_criteria WHERE id='".$_POST['id']."' "); //if(mysql_num_rows($q) && $_POST['saveid']!=$_POST['id']) //{ // echo "Criteria ID ".$_POST['id']." already exists!"; //} //else //{ $t = mysql_query("UPDATE eval_criteria SET ". "scheme_id='".$_POST['scheme_id']."', ". "criteria_id='".$_POST['criteria_id']."', ". "criteria_weight='".$_POST['criteria_weight']."', ". "criteria_name='".$_POST['criteria_name']."' ". "WHERE id='".$_POST['saveid']."' "); echo "Criteria Saved!"; //} } else { echo "Error: All fields are required!"; } } if($_POST['action']=="new") { if( $_POST['scheme_id'] && $_POST['criteria_id'] && $_POST['criteria_weight'] && $_POST['criteria_name'] ) { // $q=mysql_query("SELECT id FROM eval_criteria WHERE id='".$_POST['id']."' "); // if(mysql_num_rows($q) && $_POST['saveid']!=$_POST['id']) // { // echo "Scheme ID ".$_POST['id']." already exists!"; // } // else // { mysql_query("INSERT INTO eval_criteria ( scheme_id, criteria_id, criteria_weight, criteria_name) VALUES ( ". "'".$_POST['scheme_id']."', ". "'".$_POST['criteria_id']."', ". "'".$_POST['criteria_weight']."', ". "'".$_POST['criteria_name']."' ) "); echo "Criteria Saved!"; // } } else { echo "Error: All fields are required!"; } } if($_GET['action']=="remove" && $_GET['remove']) { mysql_query("DELETE FROM eval_criteria where id='".$_GET['remove']."' "); echo "Criteria successfully removed"; } echo "
"; if(! ($_GET['action']=="edit" || $_GET['action']=="new") ) { echo " Add New Criteria \n"; echo ""; echo ""; //echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo ""; } if($_GET['action']=="edit" || $_GET['action']=="new") { echo "\n"; if($_GET['action']=="edit") { echo "\n"; $q=mysql_query("SELECT * FROM eval_criteria WHERE id='".$_GET['edit']."' "); $critr=mysql_fetch_object($q); $buttontext="Save"; } else if($_GET['action']=="new") { $buttontext="Add"; } echo "
rec ID Scheme ID Criteria ID Criteria Weight Criteria Name Actions
"; echo ""; //echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo ""; echo ""; // echo " "; echo " "; echo " "; echo " "; echo " "; echo ""; echo " "; echo ""; } else { $q=mysql_query("SELECT * FROM eval_criteria ORDER BY scheme_id, criteria_id"); while($r=mysql_fetch_object($q)) { echo ""; // echo " "; echo " "; echo " "; echo " "; echo " "; echo " "; echo ""; } } echo "
rec ID Scheme ID Criteria ID Criteria Weight Criteria Name Actions
id\" />scheme_id\" />criteria_id\" />criteria_weight\" />criteria_name\" />
$r->id $r->scheme_id $r->criteria_id $r->criteria_weight $r->criteria_name "; echo "id\">Edit"; echo "   "; echo "id\">Remove"; echo "
"; echo "
"; echo"Scheme ID must exist in Schemes!"; echo ""; echo ""; // send_footer(); ?>