-
Notifications
You must be signed in to change notification settings - Fork 0
/
rate this.php
87 lines (54 loc) · 1.22 KB
/
rate this.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
<?php
session_start();
if (isset($_POST['yeah']))
{
$yeah=$_SESSION['yeah']=$_POST['yeah'];
//echo $_SESSION['yeah'];
}
else
{ echo "nothing chosen";}
?>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<style>
body
{
background: url('red.jpg') no-repeat;
background-position:center;
background-size:cover;
height:130vh;
margin:0px;
padding:0px;
font-family:sans-serif;
font-weight:bold;
font-size:24px;
display: flex;
justify-content:center;
align-items: center;
letter-spacing: 4px;
}
</style>
</head>
<body>
<div class="divv" align="center">
<center>
<img src="PicsArt heart.png" class="image">
<br>
<br>
<font color="black" size="20px">Rate This!</font>
<img src="marching.gif" class="mast" >
<br>
<br>
<form name="f1" action="any problem.php" method="POST">
<input id="submit" type="submit" name="rate" value="5" style="background-color:red;" autofocus>
<br>
<br>
<input id="submit" type="submit" name="rate" value="4" style="background-color:orange;">
<br>
<br>
<input id="submit" type="submit" name="rate" value="3" style="background-color:blue;">
</form>
</div>
</body>
</html>