-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctions.php
More file actions
134 lines (128 loc) · 3.8 KB
/
functions.php
File metadata and controls
134 lines (128 loc) · 3.8 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?php
function pdo_connect_mysql() {
// connection variables
$DATABASE_HOST = 'localhost';
$DATABASE_USER = 'root';
$DATABASE_PASS = '';
$DATABASE_NAME = 'merch_inventory';
try {
return new PDO('mysql:host=' . $DATABASE_HOST . ';dbname=' . $DATABASE_NAME . ';charset=utf8', $DATABASE_USER, $DATABASE_PASS);
} catch (PDOException $exception) {
// Error Handling
exit('Failed to connect to database!');
}
}
function template_header($title) {
echo <<<EOT
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>$title</title>
<link href="stylepage.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css">
</head>
<body>
<header>
<div id="header-content">
<div class="icon lnr lnr-heart">
<img src="logo1.png" height = 100% border-radius= 50px>
</div>
<nav class="toplinks">
<a href="/home.html">home</a>
<a href="/aboutus.html">about us</a>
<a href="/career.html">career</a>
<a href="/history.html">history</a>
<a href="index.php">merch store</a>
<a href="index.php?page=products">products</a>
</nav>
<div class="link-icons">
<a href="index.php?page=cart">
<i class="fas fa-shopping-cart"></i>
</a>
</div>
</div>
</header>
<main>
EOT;
}
// Template footer
function template_footer() {
$year = date('Y');
echo <<<EOT
</main>
<br>
<br>
<hr>
<footer id="footer">
<div class="container">
<div class="top">
<div class="left">
<dl>
<dt class="t-gradient"> Welcome </dt>
<dd><a href= "home.html"> Home </a></dd>
<dd><a href= "about.html"> About </a></dd>
<dd><a href= "history.html"> History </a></dd>
<dd><a href= "career.html"> Careers </a></dd>
</dl>
<dl>
<dt class="t-gradient"> Resources </dt>
<dd><a href= "store.html"> Merch Store </a></dd>
<dd><a href= "contactus.html"> Contact Us </a></dd>
<dd><a href= "teams.html"> Teams </a></dd>
<dd><a href= "projects.html"> Projects </a></dd>
</dl>
<dl>
<dt class="t-gradient" style="background: white"> ~ </dt>
<dd><a href= " "> </a></dd>
<dd><a href= " "> </a></dd>
<dd><a href= " "> </a></dd>
<dd><a href= " "> Privacy Policy </a></dd>
</dl>
</div>
</div>
<div class="bottom">
<div class="left">
© 2012–2019 Alliance Gaming all rights reserved.
</div>
</div>
</div>
</footer>
</body>
</html>
EOT;
}
function template_headerproduct($title) {
echo <<<EOT
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>$title</title>
<link href="stylepage.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css">
</head>
<body>
<header>
<div id="header-content">
<div class="icon lnr lnr-heart">
<img src="logo1.png" height = 100% border-radius= 50px>
</div>
<nav class="toplinks">
<a href="/home.html">home</a>
<a href="/aboutus.html">about us</a>
<a href="/career.html">career</a>
<a href="/history.html">history</a>
<a href="index.php">merch store</a>
<a href="index.php?page=products">products</a>
</nav>
<div class="link-icons">
<a href="index.php?page=cart">
<i class="fas fa-shopping-cart"></i>
</a>
</div>
</div>
</header>
EOT;
}
?>