-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpoll-fieldset.php
More file actions
72 lines (35 loc) · 1.65 KB
/
Copy pathpoll-fieldset.php
File metadata and controls
72 lines (35 loc) · 1.65 KB
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
<fieldset class="poll-fieldset">
<script>
function validateForm() {
var x = document.forms["form1"]["Poll"].value;
if (x == null || x == "") {
alert("Анкетата трябва да бъде попълнена, преди да изпратите своя глас");
return false;
}
}
</script>
<legend>Къде е играл най-добре Валери Божинов?</legend>
<form action="<?php $editFormAction; ?>" id="form1" name="form1" method="POST" onsubmit="return validateForm()">
<label>
<input type="radio" name="Poll" value="levski" id="Poll_0" />
Левски
</label>
<label>
<input type="radio" name="Poll" value="cska" id="Poll_1" />
ЦСКА
</label>
<label>
<input type="radio" name="Poll" value="plaza" id="Poll_2" />
Плаза
</label>
<input type="submit" name="submit" id="submit" value="Гласувай" class="btn btn-primary" />
<?php if(isset( $_POST['submit']) && $msg!='' )
{?>
<div class="erroroutput"><p><?php echo $msg; ?><br></p></div>
<?php } elseif (isset( $_POST['submit'])) { ?>
<a class="btn btn-default results" href="http://creatingaform.prleo.com/results.php">Благодарим Ви. Вижте РЕЗУЛТАТИТЕ</a>
<?php }?>
<input type="hidden" name="id" value="form1" />
<input type="hidden" name="MM_insert" value="form1" />
</form>
</fieldset><!-- /.poll-fieldset -->