This program creates a word puzzle according to given input, then it can print out the key. It has three parts: puzzle.html, wordFind.php, wordFindKey.php. They are presented respectively:
puzzle.html
?View Code HTML1
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
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title>Word Puzzle Maker</title>
<style type = "text/css">
body{
background: tan;
}
</style>
</head>
<body>
<center>
<h1>Word Puzzle Maker</h1>
<form action = "wordFind.php"
[...]
Download rose.rar
This dice game is very suitable for beginners of php. THe user tries to guess the number of petals around the rose, the points around the center point in 5 dices. It is assumed that your register_globals s off in your php.ini. Note that this game file should be named rose.php.
?View Code PHP1
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<html>
<head>
<title>Petals Around [...]
Finally I have decided to learn PHP. I will post some examples in the future as I learn along. PHP is a scripting language originally designed for producing dynamic web pages. PHP is a widely-used general-purpose scripting language that is especially suited for web development and can be embedded into HTML. It generally runs on [...]
It is free and easy. An article on Wikihow does a good job on explaining the steps. I was able to do it using this guide. Here is the outline:
(This guide is for Windows)
1. Open command in Windows. Type ipconfig/all
2. Write down IP adress, subnet mask, default gateway, and DNS servers. These will be needed [...]