fixed problem with dot

Signed-off-by: Ebbe Baß <ebbe.bass>
main
Ebbe Baß 2024-02-17 01:51:23 +01:00
parent c2711869d4
commit 1cc4089a44
1 changed files with 12 additions and 1 deletions

View File

@ -40,7 +40,18 @@
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
echo '<tr><th>'.$row["id"].'</th><th>'.$row["universe"].'</th><th>'.$row["dmx_address"].'</th><th><form action="./settings.php?id='.$row["mac_address"]'"><button type="submit" class="btn btn-secondary">Configure</button></form></th></tr>';
echo '
<tr>
<th>'.$row["id"].'</th>
<th>'.$row["universe"].'</th>
<th>'.$row["dmx_address"].'</th>
<th>
<form action="./settings.php?id='.$row["mac_address"].'">
<button type="submit" class="btn btn-secondary">Configure</button>
</form>
</th>
</tr>
';
}
}
else {