include '../inc/db.inc.php';
$adminPage = true;
include '../inc/header.php';
echo "
NonParticipants
";
if(isset($_GET['deleteID']))
{
if(mysql_query("DELETE from gns_alums where alumID = '$_GET[deleteID]'"))
echo "Deleted
";
else
echo "Error Deleting
";
}
if(isset($_POST['addNonP']))
{
$firstname = addslashes($_POST['firstname']);
$lastname = addslashes($_POST['lastname']);
if(mysql_query("INSERT into gns_alums (firstname, lastname, participating)
VALUES ('$firstname', '$lastname', 0)"))
{
echo "Alum Added";
}
else
echo "Add Failed";
}
?>
$results = mysql_query("SELECT alumID, firstname, lastname from gns_alums where participating = 0 ORDER BY lastname, firstname");
if($results)
{
echo" Select a name to delete
";
while(list($alumID,$first,$last) = mysql_fetch_row($results))
{
echo "$first $last |
";
}
echo "
";
}
?>
Add a non-participant
include '../inc/footer.php';
?>