-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
33 lines (27 loc) · 887 Bytes
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PDO & MYSQLI Crud | Ralph Custodio</title>
<!-- offline Bootstrap import -->
<link rel="stylesheet" href="./css/bootstrap.css">
<!-- custom external css -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container flex-wrap align-items-center justify-content-center">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="text-center">
<h1>ITH 107 Web and System Technologies</h1>
<h4><u>PHP CRUD Process</u></h4>
</div>
<div class="button-container">
<a href="./mysqli/index.php" class="btn btn-dark m-3">MySQli</a>
<a href="./pdo/index.php" class="btn btn-dark m-3">PDO</a>
</div>
</div>
</div>
</body>
</html>