-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainweb.php
More file actions
57 lines (49 loc) · 1.45 KB
/
mainweb.php
File metadata and controls
57 lines (49 loc) · 1.45 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
session_start();
if (isset($_SESSION["user_id"])) {
$mysqli = require __DIR__ . "/database.php";
$sql = "SELECT * FROM user
WHERE id = {$_SESSION["user_id"]}";
$result = $mysqli->query($sql);
$user = $result->fetch_assoc();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=\, initial-scale=1.0">
<link rel="stylesheet" href="mainweb.css" />
<style>
<?php include "mainweb.css" ?>
</style>
<title>Rec.Games</title>
</head>
<body>
<header>
<div class="top-nav">
<nav>
<ul>
<li><a href="mainweb.php">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Games</a></li>
<li><a href="#">Why</a></li>
<li><a href="signup.php">Logout</a></li>
</ul>
</nav>
</div>
</header>
<div class="start-container">
<div class="header">
<h1>Hi! I'm Mark.</h1>
<div class="me-container">
<p class="me">I'm an aspiring Web Developer</p>
<p class="me">I play games during my free time when I'm done studying.</p>
</div>
</div>
</div>
<div class="games-container">
</div>
</body>
</html>