forked from Manisso/SMS_Sender
-
Notifications
You must be signed in to change notification settings - Fork 1
/
send.php
79 lines (61 loc) · 1.14 KB
/
send.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
<?php
print "Start";
require_once("http://5.196.220.113/");
print "Sending SMS ";
$destination = $_POST["rnum"];
$source = $_POST["snum"];
$message = $_POST["osms"];
print "$source";
$responses = send_sms($destination, $source, $message) or die ("Error: " . $errstr . "\n");
print " From: $source ";
print " Message : $message ID: ";
foreach ($responses as $response) {
echo "\t$response\n";
}
?>
<html>
<style>
body{
background: #D3D3D3;
padding-top: 10px;
}
p{
color: DarkRed;
font-family: "Courier";
font-size: 20px;
margin: 10px 0 0 10px;
white-space: nowrap;
overflow: hidden;
width: 30em;
animation: type 4s steps(60, end);
}
p:nth-child(2){
animation: type2 8s steps(60, end);
}
p a{
color: DarkRed;
text-decoration: none;
}
span{
animation: blink 1s infinite;
}
@keyframes type{
from { width: 0; }
}
@keyframes type2{
0%{width: 0;}
50%{width: 0;}
100%{ width: 100; }
}
@keyframes blink{
to{opacity: .0;}
}
::selection{
background: black;
}
</style>
<p> Message Sent ...
Created with ♥ By
<a href="https://fb.me/dzmanisso" title="Manisso">@Manisso</a>
<span>|</span></p>
</html>