-
Notifications
You must be signed in to change notification settings - Fork 0
/
massageSenting.php
58 lines (46 loc) · 1.08 KB
/
massageSenting.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
<?php
session_start();
if(!isset($_POST["submit"]))
{
$_SESSION["usarID"] = $_SESSION["phn"];
}
?>
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>messaging form</title>
<style media="screen">
body{
background: #c0c0cc;
}
form{
width: 500px;
padding: 20px;
margin: auto;
background: #7a7cbb;
font-size: 20px
}
input[type=submit]{
padding: 5px;
font-size: 18px
}
textarea{
background: #f2f2f2;
width: 500px;
font-size: 20px;
margin: auto;
}
</style>
</head>
<body>
<form action="messageSubmitDataHandeling.php" method="post">
<h3>Contact number's</h3>
<textarea name="contctNumber" rows="8" cols="80"></textarea>
<h3>Type your message</h3>
<textarea name="messageBody" rows="8" cols="50"></textarea>
<br>
<input type="submit" name="submit" value="Sent">
</form>
</body>
</html>