-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstep3.php
130 lines (106 loc) · 4.61 KB
/
step3.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
<!DOCTYPE html>
<html lang="en">
<?php include('conf.php'); ?>
<head>
<title><?=$title;?></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
</head>
<body class="<?=$bg?>">
<div class="container-fluid bg-danger text-white text-center p-2">
<h4>MindReader</h4>
</div>
<div class="container-fluid">
<div class="row mt-4 justify-content-center">
<div class="col-12 col-sm-12 col-md-10 col-lg-7">
<div class="card shadow-lg <?=$bg?>">
<div class="card-body justify-content-center">
<div class="title1 py-4 text-center">
Great! <span class="text-danger">Last Step </span> now
</div>
<!-- <div class="text-center">
<img src="img/brain.png" class="img-fluid w-50 border m-2">
</div> -->
<div class="">
<h3 class="text-center">
Find Symbol in front of your answer... <br> and click on <span class="font-weight-bold">Show My Symbol</span> button at bottom...!!
<br><br>
Dont Click on your answer...<br>
</h3>
<hr>
<?php
$a="012345678";
$symbol = [
"fas fa-cat",
"fas fa-chess-knight",
"fas fa-chess-queen",
"fas fa-chess-rook",
"fas fa-chess-pawn",
"fas fa-chess-king",
"fas fa-child",
"fas fa-crow",
"fas fa-democrat",
"fas fa-dog"
];
$shuffeled_numbers=str_shuffle($a);
$c=substr($shuffeled_numbers,0,8);
$c=str_shuffle($c);
$ans=$symbol[$shuffeled_numbers[8]];
$symbol_index=0;
echo "<div class='row'>";
for($i=0;$i<=100;$i++)
{
?>
<div class="col-6 col-sm-4 col-md-4">
<div class="card mb-2">
<div class="card-body d-flex">
<div style="font-size: 50px">
<?=$i;?>
</div>
<?php
if($i%9==0)
{
echo "<i class='$ans fa-5x mx-auto' ></i>";
$c=str_shuffle($c);
$symbol_index=0;
}
else
{
$sym = $symbol[$c[$symbol_index]];$symbol_index++;
echo "<i class='$sym fa-5x mx-auto' ></i>";
}
?>
</div>
</div>
</div>
<?php
}
echo "</div>";
?>
</div>
<a href="result.php?mr=<?php echo $ans;?>" class="btn btn-info btn-block btn-lg mt-4 bg-red font-weight-bold text-white border-white">Read my mind now...</a>
</div>
</div>
<div class="text-center mt-3">
<small>
<a class="text-dark" target="_blank" href="privacy.php">Privacy Policy</a> |
<a class="text-dark" target="_blank" href="terms.php">Terms & Conditions</a> |
<a class="text-dark" target="_blank" href="disclaimer.php">Disclaimer</a> |
<a class="text-dark" target="_blank" href="credits.php">Credits</a>
<br>
This website in no way is affiliated with Facebook or any Facebook entities. Once you leave Facebook the responsibility no longer is on their site. We make every attempt to clearly state and show all proof. We do not sell your email or any information. Can Spam compliant.
</small>
</div>
</div>
</div>
</div>
</body>
</html>