Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

ramverket/exercises/quiz/inc/

config.php
connect_db.php
db_manager.php
footer.php
head.php
header.php
login_check.php

head.php

20 lines ASCII Windows (CRLF)
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <!-- Google Fonts -->
    <link href="https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap" rel="stylesheet">

    <!-- Huvud-CSS -->
    <link rel="stylesheet" href="css/main.css">

    <!-- Eventuella JavaScript-filer -->
    <?php if (!empty($js) && is_array($js)): ?>
        <?php foreach ($js as $j): ?>
            <script src="js/<?php echo htmlspecialchars($j); ?>.js" defer></script>
        <?php endforeach; ?>
    <?php endif; ?>

    <!-- Sidtitel -->
    <title><?php echo htmlspecialchars($page_title); ?></title>
</head>