-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStrengths.php
93 lines (62 loc) · 2.34 KB
/
Strengths.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
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
<!DOCTYPE html>
<html>
<head>
<link href="nanoPages.css" type="text/css" rel="stylesheet">
<meta charset=utf-8 />
<title>Strengths</title>
</head>
<body>
<div class='header'>
<h3 id='title'>GNU nano v2.3.4</h3>
<h3 id='file'>File: Strengths.txt</h3>
</div>
<div class = 'container'>
<?php
echo "<div class='fileText'>";
echo "<pre>";
$handle = fopen("Files/Strengths.txt", "r");
if ($handle) {
while (($line = fgets($handle)) !== false) {
echo $line;
}
} else {
echo "Error opening file!";
}
fclose($handle);
echo "</pre>";
echo "</div>";
?>
</div>
<footer>
<table BORDER=0 CELLSPACING=0 WIDTH="100%" >
<tr >
<!-- INTRO BLOCK -->
<td align="left" WIDTH="1.5%" BGCOLOR="#FFFFFF" ></td>
<td align="left" WIDTH="8%"><tt><font color="#440077"> <a href="Intro.php">Intro</a></font></tt></td>
<!-- CURRENT STUDIES BLOCK -->
<td WIDTH="1.5%" BGCOLOR="#FFFFFF" ></td>
<td WIDTH="15%" ><tt><font color="#440077"> <a href="Current_Studies.php">Current Studies</a></font></tt></td>
<!-- SKILLS BLOCK -->
<td WIDTH="1.5%" BGCOLOR="#FFFFFF" ></td>
<td WIDTH="8%" ><tt><font color="#440077"> <a href="Skills.php">Skills</a></font></tt></td>
<!-- QUALIFICATIONS BLOCK -->
<td WIDTH="1.5%" BGCOLOR="#FFFFFF" ></td>
<td WIDTH="15%" ><tt><font color="#440077"> <a href="Qualifications.php">Qualifications</a></font></tt></td>
<!-- STRENGTHS BLOCK -->
<td WIDTH="1.5%" BGCOLOR="#02AF02" ></td>
<td WIDTH="10%" ><tt><font color="#440077"> <a href="Strengths.php">Strengths</a></font></tt></td>
<!-- HOBBIES BLOCK -->
<td WIDTH="1.5%" BGCOLOR="#FFFFFF" ></td>
<td WIDTH="13%"><tt><font color="#440077"> <a href="Hobbies.php">Hobbies</a></font></tt></td>
<!-- SITEMAP BLOCK -->
<td WIDTH="1.5%" BGCOLOR="2035D6" ></td>
<td WIDTH="10%"><tt><font color="#440077"> <a href="sitemap.html">Sitemap</a></font></tt></td>
<!-- TERMINAL BLOCK -->
<!-- <td> </td> Remove to add more tabs -->
<td align="right" WIDTH="1.5%" BGCOLOR="RED" ><b><tt></tt></b></td>
<td align="right" WIDTH="8%" id="backToTerminal"><tt><font color="#440077"> <a href="../index.html">Back to Terminal</a></font></tt></td>
</tr>
</table>
</footer>
</body>
</html>