From 9eabae58420ecb3cc289d6d7ff4c2414f9c63370 Mon Sep 17 00:00:00 2001 From: Minteck Date: Sun, 31 Oct 2021 12:30:56 +0100 Subject: Initial commit --- includes/header.php | 139 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 139 insertions(+) create mode 100644 includes/header.php (limited to 'includes/header.php') diff --git a/includes/header.php b/includes/header.php new file mode 100644 index 0000000..5522bbf --- /dev/null +++ b/includes/header.php @@ -0,0 +1,139 @@ +format("U"); + setcookie("FL_SESSION_TOKEN", $_GET['_t'], $exp, "/", "Familine Movies.ddns.net", true, true); + header("Location: /"); + die(); +} + +if (php_sapi_name() != "cli") require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/session.php"; + +require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/plus.php"; + +?> + + + + + + + + + + + + <?php if (isset($_TITLE)) { echo($_TITLE . " | Familine Movies" . (isset($_FamilineMoviesPlus) && $_FamilineMoviesPlus ? "+" : "")); } else { echo("Familine Movies" . (isset($_FamilineMoviesPlus) && $_FamilineMoviesPlus ? "+" : "")); } ?> + + + + +
+ + + +
+ + + + + + -- cgit