forked from laurynas/php-crossword
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
72 lines (55 loc) · 1.43 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
71
72
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>PHP Crossword Generator</title>
<style>
body, td { font-family: Verdana, Arial; font-size: 12px; }
</style>
</head>
<body>
<h1>PHP Crossword</h1>
<p>
PHP Crossword is PHP and MySQL based crossword generator.
</p>
<h3>News</h3>
<p>
2005-08-20<br />
Generator & demo improved to support numbering of words.<br />
Now generated demo looks like standard crossword puzzle.<br />
Thanks to Sandy Antunes.
</p>
<p>
<h3>Features</h3>
<ul>
<li>Generator library</li>
<li>PHP Crossword XML client</li>
<li>Demo files</li>
</ul>
</p>
<h3>Demo</h3>
<ul>
<li><a href="demo.php" target="_blank">General PHP Crossword demonstration</a></li>
<li><a href="demo-user-words.php" target="_blank">Generating crossword from provided words</a></li>
<li><a href="demo-add-words.php" target="_blank">Adding words</a></li>
<li><a href="demo-client.php" target="_blank">PHP Crossword Client</a></li>
<li><a href="demo-xml.php" target="_blank">Demo XML output</a></li>
</ul>
<h3>Features</h3>
<ul>
<li>Customizable size</li>
<li>Words grouping</li>
<li>MySQL database support</li>
<li>XML output</li>
<li>Colored debugging</li>
</ul>
<h3>TODO</h3>
<ul>
<li>API Documentation</li>
<li>Installation instructions</li>
<li>Client Java Applet</li>
<li>More databases support...</li>
</ul>
<hr size="1" />
© Laurynas Butkus (laurynas.butkus at gmail.com), 2005
</body>
</html>