-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwd_Work.php
37 lines (35 loc) · 1.31 KB
/
wd_Work.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
<?php
//This is a secure page
//Check if the vistor has not logged in
session_start();
if(!$_SESSION['weblogin']) {
//send him to the login.php page with the page variable set to this pages name so he can be sent back
header('Location: Login.php?page=Work');
}
?>
<html>
<head>
<title>Education :: Dallas Designs</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="include/Menu.css" type="text/css" media="screen" />
<link rel="stylesheet" href="include/DallasDesigns.css" type="text/css" media="screen" />
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
</head>
<body background="images/parchment.gif">
<div id="bodytext" style="position:absolute; width:700px; height:115px; z-index:6; left: 22px; top: 168px;">
<p>Work Experience: <br />
Under construction</p>
</div>
<?php include("include/Top.php"); ?>
<?php include("include/WebMenu.php"); ?>
</body>
</html>