1
0
This commit is contained in:
Daniel Tartavel 2022-09-25 15:51:09 +02:00
parent 3f0111dc5e
commit 9b40523a1f

View File

@ -44,12 +44,15 @@ print('<br><br>
<div class="container">') . EOL; <div class="container">') . EOL;
print(' <div class="row"> print(' <div class="row">
<div class="col-lg-12 text-center">'); <div class="col-lg-12 text-center">');
$votes = queryVotes($db, $idVotation); $votes = queryVotes($db, $idVotation);
if (!empty($votes)) if (!empty($votes))
{ {
print("<table><tr><td>");
print("vote</td><td>méthode</td>/tr>");
foreach ($votes as $value) foreach ($votes as $value)
{ {
print ($value[1] . " " . $value[5] . EOLH); print ("<tr><td>" . $value[1] . "</td><td>" . $value[5] . ">/td></tr>" . EOL);
} }
echo EOLH . EOLH; echo EOLH . EOLH;
} }