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['login1']) || !isset($_SESSION['login2']) || !isset($_SESSION['login3']) ) { require("sessions.php"); } if (isset($_POST['login'])) { if ($_POST['login']=="admin" && $_POST['password']=="admin") { $_SESSION['login1']=true; header("Location: two_tech_files.php"); exit; } else if ($_POST['login']=="admin2" && $_POST['password']=="admin2") { $_SESSION['login2']=true; header("Location: two_tech_files.php"); exit; } else if ($_POST['login']=="admin2" && $_POST['password']=="admin2") { $_SESSION['login3']=true; header("Location: two_tech_files.php"); exit; } else { $status=true; } } ?>