This commit is contained in:
devdatt 2025-12-12 09:43:31 +05:30
parent a84b3c6979
commit 8f2f03b845
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
<div class="dropdown">
<select name="input">
<?php
$opts = ['hdmi', 'url', 'rtmp server', 'srt server', 'udp', 'custom'];
$opts = ['hdmi', 'url', 'rtmp', 'srt', 'udp', 'custom'];
foreach ($opts as $o) {
$sel = ($data['input'] === $o) ? 'selected' : '';
echo "<option value=\"" . htmlspecialchars($o) . "\" $sel>" . htmlspecialchars($o) . "</option>";