header ("Expires: Thu, 17 May 2001 10:17:17 GMT"); header ("Last-Modified: ".gmdate("D, d M Y H:i:s")."GMT"); header ("Cache-Control:no-cache, must-revalidate"); header ("Pragma: no-cache"); session_start(); if (!isset($_SESSION['login'])) { require("sessions.php"); } if (isset($_POST['login'])) { if (($_POST['login']=="admin" && $_POST['password']=="admin") || ($_POST['login']=="smith" && $_POST['password']=="brunel")) { $_SESSION['login']=true; header("Location: one_tech_files.php"); exit; } else { $status=true; } } ?>

