-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
59 lines (53 loc) · 1.56 KB
/
index.php
File metadata and controls
59 lines (53 loc) · 1.56 KB
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
<?php
include 'config.php';
// Visitor counter - increment only on landing page
$counterFile = __DIR__ . '/counter.txt';
if (!file_exists($counterFile)) {
file_put_contents($counterFile, '0');
}
$visitorCount = (int)file_get_contents($counterFile);
$visitorCount++;
file_put_contents($counterFile, $visitorCount);
ob_start();
?>
<center>
<table cellspacing="0" cellpadding="0" border="0">
<tr><td height="10"></td></tr>
<tr>
<td align="center"><font<?= $fontFace ?>>This page best viewed in:</font><td>
</tr>
<tr><td height="10"></td></tr>
<tr>
<td align="center">
<img src="images/netscap4.gif" border="0" hspace="2"><img src="images/iexplore.gif" border="0" hspace="2">
</td>
</tr>
<tr><td height="10"></td></tr>
<tr>
<td align="center">
<font<?= $fontFace ?>>If you are using a modern browser<br>
200% scale is recommended.</font>
<td>
</tr>
<tr><td height="10"></td></tr>
<tr>
<td align="center">
<font<?= $fontFace ?>>This site only using a session ID<br>
to track your progress in the Online puzzle.<br>
No cookies nor privacy issues!</font>
<td>
</tr>
<tr><td height="20"></td></tr>
<tr>
<td align="center">
<font<?= $fontFace ?> color="#666666">You are visitor</font><br>
<?= getCounterDigits($visitorCount) ?>
</td>
</tr>
</table>
</center>
<?php
$content = ob_get_clean();
$title = 'Welcome to the Retro Dynart page!';
$description = 'An early internet experience project';
include "layout.php";