-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharray_action.php
91 lines (85 loc) · 1.89 KB
/
array_action.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php
if($_SERVER['REQUEST_METHOD'] =='POST'){
$hello = $_COOKIE['name'];
}else{
$hello = "Hello | User";
}
?>
<title><?php echo $hello; ?></title>
</head>
<body>
<style type="text/css">
textarea{
padding: 10px;
direction: rtl;
}
#split{
display: block;
width: 500px;
height: 30px;
font-size: 20px;
appearance: auto;
/*user-select: none;*/
white-space: pre;
align-items: flex-start;
text-align: center;
cursor: default;
box-sizing: border-box;
background-color: #FF2E2E;
color: buttontext;
padding: 1px 6px;
border-width: 2px;
/*border-style: dotted;*/
border-color: buttonborder;
border-radius: 5px;
border-image: initial;
text-decoration: none;
}
</style>
</body>
</html>
<?php
echo "<center>";
if($_SERVER['REQUEST_METHOD'] =='POST'){
$keyword = $_POST['keyword'];
/*
echo "<pre>";
print_r($keyword);
echo "</pre>";
*/
$newkeyword = explode(' ', $keyword);
echo "<p>words you entered: " . count($newkeyword) . "</p>";
/*
echo "<pre>";
print_r($newkeyword);
echo "</pre>";
*/
$nk = array_unique($newkeyword);
echo "<p>words after filtering: " . count($nk) . "</p>";
/*
echo "<pre>";
print_r(array_unique($newkeyword));
echo "</pre>";
*/
//echo "<h3>". $_COOKIE['name'] ."</h3>";
echo "<h4>Now We are Process Your Request</h4>";
//echo"<br />";
echo "<textarea rows='35' cols='100'>";
foreach ($nk as $value){
if(strlen($value) > 2){
echo $value;
echo "\n";
}
}
echo "</textarea>";
}else{
echo "<h3>Oh Sorry, Something is Not Working!</h3>";
}
echo "<a href='/elghazawy/array_input.php' id='split'>Back to Home Page</a>";
echo "</center>";
?>