-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
86 lines (78 loc) · 2.09 KB
/
index.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
<?
header('Content-Type: text/html; charset=utf-8');
?>
<html>
<head>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js'></script>
<script>
//alert("hello");
function form_submit(){
//$('#form').submit();
//return;
//alert("form_submit");
var values = $('#form').serialize();
$.ajax({
type: "POST",
url:"taxes.php",
data:values,
dataType: "json",
success:function(result){
$.each(result, function(key, val){
$("#tasks").append("<tr><td>"+val.date+"</td><td>"+val.body+"</td><td>"+val.deadline+"</td></tr>")
});
;
}
});
}
</script>
</head>
<body>
<h3>Планировщик задач</h3>
<form id='form' action="taxes.php" method="POST">
<table>
<tr>
<td>Группа</td>
<td>
<select name='group'>
<option value='1'>Группа I</option>
<option value='2'>Группа II</option>
<option value='3'>Группа III</option>
<option value='4'>Группа IV</option>
<option value='5'>Группа V</option>
<option value='6'>Группа VI</option>
</select>
</td>
</tr>
<tr>
<td>Период</td>
<td>
<input type='date' name='period_from' placeholder='От'>
<input type='date' name='period_to' placeholder='До'>
</td>
</tr>
<tr>
<td>Периодичность оплаты ЕСВ</td>
<td>
<input type='radio' name='esv_frame' value='month' checked='checked'>Ежемесячно
<input type='radio' name='esv_frame' value='quarter'>Ежеквартально
</td>
</tr>
<tr>
<td>Язык</td>
<td>
<input type='radio' name='language' value='rus' checked='checked'>Русский
<input type='radio' name='language' value='ukr'>Украинский
</td>
</tr>
<tr>
<td></td>
<td>
<button onclick='form_submit(); return false;'>Показать</button>
</td>
</tr>
</table>
</form>
<table id='tasks'>
</table>
</body>
</html>