PHP Classes

File: uploady/components/header.php

Recommend this page to a friend!
  Classes of Faris AL-Otabi   Uploady PHP Upload File to MySQL   uploady/components/header.php   Download  
File: uploady/components/header.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Uploady PHP Upload File to MySQL
Store file upload details in a MySQL database
Author: By
Last change: 1. Starting to add CSRF on the new features
2. fixed missing alerts
3. added update direction
4. fixed a bug in admin session
Date: 1 month ago
Size: 887 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html <?= $dir ?> class="h-100" data-bs-theme="<?= $theme ?>">

<head>
    <meta charset="UTF-8" />
    <meta http-equiv="content-language" content="<?= $language ?>" />
    <meta name="description" content="<?= $st['description'] ?>" />
    <meta name="author" content="<?= $st['owner_name'] ?>" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta name="application-name" content="Uploady" />
    <link rel="shortcut icon" type="image/png" href="<?= $st['website_favicon']; ?>" />
    <meta name="keywords" content="<?= $st['keywords'] ?>" />
    <meta name="language" content="EN" />

    <title>
        <?= $st['website_name'] ?> - <?= $title ?>
</title>
    <?php include_once APP_PATH . 'components/css.php'; ?>
</head>

<body class="d-flex flex-column h-100">

    <?php include_once APP_PATH . 'components/navbar.php'; ?>