-
Notifications
You must be signed in to change notification settings - Fork 0
/
stats.html
43 lines (39 loc) · 1.03 KB
/
stats.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Timesheet</title>
<meta name="generator" content="Studio 3 http://aptana.com/">
<meta name="author" content="Anonymous">
<!-- Date: 2011-05-09 -->
<script type="text/javascript " src="functions.js">
</script>
<script type="text/javascript">
function getProj() {
getData('read.php');
}
function getStats(url)
{
var url2 = url;
getData(url2);
}
</script>
</head>
<body>
<h1>Stats:</h1>
<script type="text/javascript">
getStats('stats.php')
</script>
<p>
<div id='report'>
</div>
<br>
<h3>Navigation menu:</h3>
<form>
<input type="button" value="Index" onclick="action1('index.html')"/>
<input type="button" value="Register" onclick="action1('register.html')"/>
<input type="button" value="Reports" onclick="action1('report.html')"/>
</form>
</body>
</html>