-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreferences.php
More file actions
36 lines (29 loc) · 816 Bytes
/
references.php
File metadata and controls
36 lines (29 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
require "realconfig.php";
$dbh = new PDO(DB_DSN, DB_USER, DB_PASSWORD);
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>References</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="images/reddit-logo.ico">
</head>
<body>
<div class="container">
<?php
require_once "header.php";
?>
<div class="posts-container">
<div class="post-div">
<h1>References</h1>
<h2><a href="https://www.reddit.com/">logo</a></h2>
<h2><a href="https://www.cdnfonts.com/verdana.font">Font</a></h2>
</div>
</div>
</div>
</body>
</html>