-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·70 lines (63 loc) · 2.28 KB
/
index.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- can't use 3.2 since we can't do without the "archive" element for applets -->
<html>
<head>
<title>
Shephard's Conjecture Play Applet
</title>
</head>
<body bgcolor="#CC9999">
Shephard's Conjecture Play Applet
<br>
<applet
code="ShephardsPlayApplet.class"
archive="ShephardsPlayApplet.jar"
codebase="."
width="100%" height="90%"
alt="Your browser understands Java but can't seem to run this applet, sorry."
>
<param name="eventVerbose" value="<?php echo $HTTP_GET_VARS["eventVerbose"]; ?>">
<param name="showControlPanel" value="<?php echo $HTTP_GET_VARS["showControlPanel"]; ?>">
</applet>
<br>
<p>
Download
<a href="ShephardsPlayApplet.jar">
source code
</a>
for this applet
(compressed jar file contains class files and source)
<hr>
<table width="100%"> <!-- use full width of page -->
<tr>
<td align="left">
<?php include("../hitcounter.php"); ?>
<br>
Last Modified:
Fri Jan 12 12:43:00 PST 2007
<address>
Don Hatch
<br>
<a href="mailto:[email protected]">[email protected]</a>
</address>
<td align="right">
<!--
The original:
src="http://www.w3.org/Icons/valid-html40"
But netscape doesn't do png transparency right, so:
src="http://www.w3.org/Icons/valid-html40.gif"
-->
<a href="http://validator.w3.org/check/referer"><img
border="0"
src="../images/valid-html40.gif"
alt="Valid HTML 4.0!" height="31" width="88"></a>
</table>
<center>
<font size=-1>
<a href="http://www.plunk.org/~hatch/">
Back to Don Hatch's home page.
</a>
</font>
</center>
</body>
</html>