-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
77 lines (59 loc) · 2.85 KB
/
index.php
File metadata and controls
77 lines (59 loc) · 2.85 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
<?php
if(isset($_POST['submit'])){
header('Location:connect.php');
}
if(isset($_POST['ift'])){
header('Location:iftread.php');
}
if(isset($_POST['sub'])){
header('Location:mat231read.php');
}
if(isset($_POST['csc'])){
header('Location:cscread.php');
}
if(isset($_POST['subm'])){
header('Location:mat201read.php');
}
if(isset($_POST['ent'])){
header('Location:entread.php');
}
if(isset($_POST['cos'])){
header('Location:cosread.php');
}
if(isset($_POST['dts'])){
header('Location:dtsread.php');
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>cscpdfs</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>
<body>
<div class="container">
<input type="text" id="inpt" placeholder="pdf's" > <button onclick="search()" >search</button><br><br>
<form method="post">
<div class="file1" id="one">SEN <br> 201 <br><br><button type="submit" name="submit" value="submit">Read</button></div>
<div class="file2" id="two">MAT 231 <br> "Calculus" <br><br><button type="sub" name="sub" value="sub">Read</button></div><br>
<div class="file3" id="three">IFT 201 <br> "Info Tech" <br><button type="ift" name="ift" value="ift">Read</button></div><br>
<div class="file4" id="four">DTS 201 <br> "" <br><br><button type="dts" name="dts" value="dts">Read</button></div>
<div class="file5" id="five">Csc 211 <br> "" <br><br><button type="csc" name="csc" value="csc">Read</button></div>
<div class="file6" id="six">MAT 201 <br> "" <br><br><button type="subm" name="subm" value="subm">Read</button></div><br>
<div class="file7" id="seven">COS 201 <br> "" <br><br><button type="cos" name="cos" value="cos">Read</button></div><br>
<div class="talk" ><br> Computer <br>Science<br>pdf <br>reader </div>
<div style="" class="file8" id="seven">ENT 211 <br> "" <br><br><button type="ent" name="ent" value="ent">Read</button></div>
</form>
</div>
<br><br>
<footer style="background-color:white; width:100%; height:100px;" class="footer">
<a href="https://www.facebook.com/profile.php?id=100059619592416&mibextid=kfxxJD"><i class="fab fa-facebook" ></i> </a>
<a href="https://x.com/Joshua590015513?t=dSHWvv4I1BTIUIEEW1jVDQ&S=09"><i class="fab fa-twitter" ></i></a>
<a href="https:/www.linkedin.com/in/joshua-nwajei-479262344?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=andriod_app"><i class="fab fa-linkedin" ></i> </a>
</footer>
<script src="script.js"></script>
</body>
</html>