-
Notifications
You must be signed in to change notification settings - Fork 0
/
fortunecookies.php
160 lines (91 loc) · 5.29 KB
/
fortunecookies.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<?php
/*
This is the fortunecookies.php webpage which displays the output from form webpage by user name ,
User Fortune Cookies , with the colour that user selected in the form with luckey number and messages.
This page mainly focus on taking input from form page , filter the input , and display random luckey number and message randomely by using Arrays.
This program was created on 3rd october 2020.
@Author Utsavkumar M Patel (000820474).
*/
$uname = filter_input(INPUT_GET,"name",FILTER_SANITIZE_SPECIAL_CHARS);
$cookcolor = filter_input(INPUT_GET,"colorcookies");
$max = filter_input(INPUT_GET,"maxluck",FILTER_VALIDATE_INT);
$min = filter_input(INPUT_GET,"minluck",FILTER_VALIDATE_INT);
$numofcook = filter_input(INPUT_GET,"ncookies",FILTER_VALIDATE_INT);
$fortunelist = [
"Your talents will be recognized and suitably rewarded.","You look pretty.","With age comes wisdom.","A beautiful, smart, and loving person will be coming into your life.","A faithful friend is a strong defense.",
"A friend asks only for your time not your money.","A golden egg of opportunity falls into your lap this month.","A lifetime friend shall soon be made.","A pleasant surprise is waiting for you.","A smile is your personal welcome mat.",
"An inch of time is an inch of gold.","Be careful or you could fall for some tricks today.","Believe in yourself and others will too.","Bide your time, for success is near.","Carve your name on your heart and not on marble.",
"Congratulations! You are on your way.","Courtesy is contagious.","Dedicate yourself with a calm mind to the task at hand.","Disbelief destroys the magic.","Do not make extra work for yourself.",
"Don’t just think, act!","Don’t worry; prosperity will knock on your door soon.","Every flower blooms in its own sweet time.","Nature, time and patience are the three great physicians.", "New ideas could be profitable.",
"Have a beautiful day.","Help! I’m being held prisoner in a chinese bakery!","In this world of contradiction","It’s [sic] better to be merry than wise.","It’s time to get moving. Your spirits will lift accordingly.", "Nothing is more difficult, and therefore more precious, than to be able to decide.",
"Observe all men, but most of all yourself.","Others can help you now.","Perhaps you’ve been focusing too much on saving.","Practice makes perfect.","Romance moves you in a new direction.",
"Self-knowledge is a life long process.","Society prepares the crime; the criminal commits it.","Success is a journey, not a destination.","Take care and sensitivity you show towards others will return to you.","The best prediction of future is the past.",
"The secret to good friends is no secret to you.","The weather is wonderful.","Time is precious, but truth is more precious than time","You are a person of another time.","You can keep a secret.",
]
?>
<html lang="en">
<head>
<title>Fortune cookies</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body{
background-color:black;
color: #D3D3D3;
}
h1{
text-align: center;
font-size: M_1_PI;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
h6{
font-style: oblique;
font-size: small;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-weight: 600;
color: rgb(235, 15, 26);
text-align: center;
}
.fcookies{
background-color: <?=$cookcolor?>;
align-content: center;
text-align: center;
border-radius: 25px;
border-color: black;
size: M_2_PI;
justify-self: center;
overflow: auto;
border-style: M_LN10;
}
i{
color:<?=$cookcolor?>;
}
.maincookie{
color:<?=$cookcolor?> ;
align-content: center;
}
.fcookies:hover{
color:#D3D3D3;
}
</style>
</head>
<body>
<h1>HELLO <i><?= strtoupper($uname) ?></i>... Here Is Your Fortune Cookies... </h1> <br/><br/>
<div class="maincookie">
<?php
for($i=0; $i<$numofcook ; $i++){
echo '<div class = "fcookies" style = "border-style: solid"; >';
$randcook = rand(0,count($fortunelist)-1);
echo $fortunelist[$randcook]."<br>";
for($k = 0; $k<7; $k++){
$fnumber = rand($min,$max);
echo $fnumber." ";
}
echo '</div>';
echo "<br/><br/>";
}
?>
<h6>© UTSAVKUMAR M PATEL (000820474).</h6>
</body>
</html>