-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresults-fieldset.php
67 lines (26 loc) · 1.32 KB
/
results-fieldset.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
<fieldset class="result-fieldset">
<legend>Резултати</legend>
<ul>
<li>
Левски /<span class="total-votes"><?php echo $num_rowsQuestion1 ?></span> гласа/
<br />
<div class="results-bar" style="width: <?php echo round($percentQuestion1,2); ?>%;">
<?php echo round($percentQuestion1,2); ?>%
</div>
</li>
<li>
ЦСКА /<span class="total-votes"><?php echo $num_rowsQuestion2 ?></span> гласа/
<div class="results-bar" style="width: <?php echo round($percentQuestion2,2); ?>%;">
<?php echo round($percentQuestion2,2); ?>%
</div>
</li>
<li>
Плаза /<span class="total-votes"><?php echo $num_rowsQuestion3 ?></span> гласа/
<div class="results-bar" style="width: <?php echo round($percentQuestion3,2); ?>%;">
<?php echo round($percentQuestion3,2); ?>%
</div>
</li>
</ul>
<a href="http://creatingaform.prleo.com" class="btn btn-default">Обратно към гласуването</a>
<span id="total-votes">Общо гласували: <?php echo $totalRows_rs_vote ?></span>
</fieldset><!-- /.result-fieldset -->