-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.php
52 lines (19 loc) · 928 Bytes
/
input.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
<?php
session_start();
$_SESSION[relationship] = $_POST[relationship];
$mailsto = $_POST[mailsto];
$mailsfrom = $_POST[mailsfrom];
$_SESSION[mailsto] = (log($mailsto))*20;
$_SESSION[mailsfrom] = (log($mailsfrom))*20;
$contactName = 'David Cameron';
$colleagueName ='Matthew Barnes';
?>
<form style="margin-left: 50px;" name="data" action="emaillatest.php" method="post">
<label for="relationship">Relationship score</label>
<input type="number" name="relationship" value="50" min="0" max="100" /><br />
<label for="mailsto">Mails Sent</label>
<input type="number" name="mailsto" value="50" min="0" max="1000" /><br />
<label for="mailsreceived">Mails Received</label>
<input type="number" name="mailsfrom" value="50" min="0" max="1000" /><br />
<input type="submit" name="submit" value="submit" />
</form>