// Miller Ad Archive v1
session_start();
include ("class/creative.php");
if (isset($_POST['password'])) {
if ($_POST['password'] == "adm!n") {
$_SESSION["user"] = "administrator";
$_SESSION["authenticated"] = "yes";
}
if ($_POST['password'] == "m!ll3r") {
$_SESSION["user"] = "miller homes";
$_SESSION["authenticated"] = "yes";
}
}
if (isset($_POST['type'])) {
$search_object = new creative();
$search_results = $search_object->search($_POST["type"], $_POST["incentive"], $_POST["region"]);
}
?>
Miller Homes Archive
if (isset($_SESSION["authenticated"])) { ?>
MILLER HOMES CREATIVE ARCHIVE v1 |
CURRENTLY LOGGED IN AS " print $_SESSION["user"]; ?>" |
if (isset($search_results)) { print $search_results; } ?>
} else { ?>
MILLER HOMES CREATIVE ARCHIVE v1 |
} ?>