Scott M. Mcdermott

UNIX Systems & Network Administrator
available for contract or salaried positions

navbar.php

<?

/*
 * This is the common header displayed for all the pages, which allows jumps
 * to each of the individual pages supported by the script
 */
$headerlinks = array("self", "users", "groups", "locations");
$tmpstr = "<table align=left border=0 cellspacing=2 cellpadding=3>\n" .
          "<tr> <td align=center> | </td>\n";
foreach ($headerlinks as $which) {
        $tmpstr .= "<td nowrap align=left>\n" .
                   "<a class=qsubheader href=\"/$which.php\"> $which </a>\n" .
                   "</td>\n" .
                   "<td align=center> | </td>\n";
}
$tmpstr .= "</table> <br>\n";
define("MENU_NAVBAR_HEADER", $tmpstr);
//pagehead("Corporate Directory", "Directory", MENU_NAVBAR_HEADER);

?>