forked from gracexuanzhou/NousVote_Group15
-
Notifications
You must be signed in to change notification settings - Fork 0
/
result_fr.php
30 lines (28 loc) · 1.02 KB
/
result_fr.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
<?php
$title = shell_exec("python3 title.py");
$vote_y = shell_exec("python3 vote1.py");
$vote_n = shell_exec("python3 vote2.py");
echo "<?xml version=\"1.0\"?>\n";
?>
<vxml version = "2.1" application="https://webhosting.voxeo.net/208143/www/root.vxml">
<form>
<block>
<var name="title" expr="'<?=$title?>'"/>
<var name="count_y" expr="'<?=$vote_y?>'"/>
<var name="count_n" expr="'<?=$vote_n?>'"/>
<prompt>
<audio src="https://web1230012.000webhostapp.com/amount/currentvote.wav"/>
: <value expr="title"/>
</prompt>
<break time="1000"/>
<prompt>
<audio src="https://web1230012.000webhostapp.com/amount/yes_amount_fr.wav"/>
: <value expr="count_y"/>
</prompt>
<prompt>
<audio src="https://web1230012.000webhostapp.com/amount/no_amount_fr.wav"/>
: <value expr="count_n"/>
</prompt>
</block>
</form>
</vxml>