-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheducation.php
100 lines (88 loc) · 3.36 KB
/
education.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
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<?php $my_file=file_get_contents("header.html");
$to_print=str_replace("<!--js-->",
'<script language="javascript" type="text/javascript" '.
'src="javascript/courseeffects.js"></script>'
,$my_file);
echo $to_print;
include("header.php");
?>
<div id="main">
<h2> My Courses</h2><hr />
Click on a semester to display the courses I took, or click
<u><span id="allclasses">here</span></u> to show all).
<br /><br />
<div id="s8i" >
Spring 2013 Courses</div>
<div id="s8c" style="display:none"><hr />
ECE 556: Wireless Networking<br />
ECE 590: Advanced Topics in ECE - Image and Video Processing<br />
BIO 311: Intro to Systems Biology<br />
HOUSECS 59: House Course - Programming Languages<br />
PSYEDU 150: Social Dancing</div>
<br />
<div id="s7i" >
Fall 2012 Courses</div>
<div id="s7c" style="display:none"><hr />
ECE 559: Advanced Digital System Design <br />
ECE 486: Wireless Communication Systems<br />
ECE 230: Microelectronic Devices & Circuits<br />
ECON 343: The Contemporary Art Market</div>
<br />
<div id="s6i" >
Spring 2012 Courses</div>
<div id="s6c" style="display:none"><hr />
COMPSCI 110: Operating Systems <br />
COMPSCI 130: Design / Analysis of Algorithms<br />
COMPSCI 72: Artificial Life, Culture, and Evolution<br />
ECON 172: Intermediate Finance</div>
<br />
<div id="s5i">
Fall 2011 Courses</div>
<div id="s5c" style="display:none"><hr />
COMPSCI 108: Software Design / Implementation <br />
ECE 53: Electromagnetic Fields<br />
ECE 156: Computer Network Architecture<br />
ECON 138: International Economy, 1850-2000</div>
<br />
<div id="s4i">
Spring 2011 Courses</div>
<div id="s4c" style="display:none"><hr />
ECE 152: Computer Architecture <br />
ECE 54: Intro to Signals & Systems<br />
COMPSCI 102: Discrete Math for Computer Science<br />
ECON 55: Intermediate Microeconomics</div>
<br />
<div id="s3i">
Fall 2010 Courses</div>
<div id="s3c" style="display:none"><hr />
ECE 52: Intro to Digital Systems <br />
COMPSCI 100E: Program Design / Analysis II<br />
MATH 108: Ordinary & Partial Differential Equations<br />
PHYSICS 62: Intro to Electricity, Magnetism, and Optics</div>
<br />
<div id="sSummeri">
Summer 2010 Courses</div>
<div id="sSummerc" style="display:none"><hr />
Economics 102: Intro to Microeconomics (@Rutgers)<br />
Economics 103: Intro to Macroeconomics (@Rutgers)</div>
<br />
<div id="s2i">
Spring 2010 Courses</div>
<div id="s2c" style="display:none"><hr />
ECE 27: Fundamentals of Electrical & Computer Engineering <br />
MATH 108: Linear Algebra & Differential Equations<br />
STA 113: Probability & Statistics in Engineering<br />
DANCE 101: Intro to Dance</div>
<br />
<div id="s1i">
Fall 2009 Courses</div>
<div id="s1c" style="display:none"><hr />
EGR 53: Computational Methods in Engineering <br />
MATH 103: Intermediate Calculus<br />
CHEM 31: Core Concepts in Chemistry<br />
WRITING 20: Academic Writing</div>
<br />
</body>
</html>