<?php
session_start();
require_once ("connect.inc.php");
require_once ("variables.inc.php");
require_once ("library.inc.php");
$menu = "update";
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<link href="ncd.css" rel="stylesheet" media="screen" type="text/css">
<script type="text/javascript" src="library.js"></script>
<title>NCD toolkit - Update records</title>
</head>
<body>
<div id="main_container">
<div id="banner"><?php include("banner.inc.php"); ?></div>
<div id="content_container">
<div id="content">
<?php
// Clear any existing variables first
erase_all();
if ($auth != "authenticated")
include ("login.inc.php");
else
{
echo "<h1>Update records</h1>\n";
echo "<table class=\"list_table\">\n";
echo "<tr><td align=\"right\" width=\"15\">1. </td><td><b><a href=\"update_organisation.php\">Update an institution</a></b></td></tr>\n";
echo "<tr><td></td><td>Select an institution and change its data using one large form.</td></tr>\n";
echo "<tr><td></td><td height=\"5\"></td></tr>\n";
echo "<tr><td align=\"right\">2. </td><td><b><a href=\"update_collection_by_organisation.php\">Update a collection in an institution</a></b></td></tr>\n";
echo "<tr><td></td><td>Select a collection in an institition and change its data using one large form. Collections can be <a href=\"update_collection_by_organisation.php\">sorted by institution</a> or <a href=\"update_collection.php\">by collection name</a>.</td></tr>\n";
echo "<tr><td></td><td height=\"5\"></td></tr>\n";
echo "<tr><td align=\"right\">3. </td><td><b><a href=\"update_person.php\">Update a person in an institution</a></b></td></tr>\n";
echo "<tr><td></td><td>Select a person in an institition and change his or her data.</td></tr>\n";
echo "<tr><td></td><td height=\"5\"></td></tr>\n";
echo "<tr><td align=\"right\">4. </td><td><b><a href=\"update_private_collection.php\">Update a private collection</a></b></td></tr>\n";
echo "<tr><td></td><td>Select a private collection and change its data using one large form.</td></tr>\n";
echo "</table>\n";
}
?>
</div>
</div>
<div id="menu"><?php include("menu.inc.php"); ?></div>
<div id="footer"><?php include("footer.inc.php"); ?></div>
</div>
</body>
</html>