dropdown
This commit is contained in:
parent
00be930611
commit
7956558150
|
|
@ -307,6 +307,25 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="dropdown-container">
|
||||||
|
<span class="dropdown-label">HLS :</span>
|
||||||
|
<div class="dropdown">
|
||||||
|
<select name="service_rtmp_hls" id="service_rtmp_hls">
|
||||||
|
<option value="enable" <?php if ($data['service_rtmp_hls'] == 'enable') echo 'selected'; ?>>Enable</option>
|
||||||
|
<option value="disable" <?php if ($data['service_rtmp_hls'] == 'disable') echo 'selected'; ?>>Disable</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="dropdown-container">
|
||||||
|
<span class="dropdown-label">DASH :</span>
|
||||||
|
<div class="dropdown">
|
||||||
|
<select name="service_rtmp_dash" id="service_rtmp_dash">
|
||||||
|
<option value="enable" <?php if ($data['service_rtmp_dash'] == 'enable') echo 'selected'; ?>>Enable</option>
|
||||||
|
<option value="disable" <?php if ($data['service_rtmp_dash'] == 'disable') echo 'selected'; ?>>Disable</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="grid">
|
<div class="grid">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
|
|
||||||
|
|
@ -391,24 +410,6 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="dropdown-container">
|
|
||||||
<span class="dropdown-label">HLS :</span>
|
|
||||||
<div class="dropdown">
|
|
||||||
<select name="service_rtmp_hls" id="service_rtmp_hls">
|
|
||||||
<option value="enable" <?php if ($data['service_rtmp_hls'] == 'enable') echo 'selected'; ?>>Enable</option>
|
|
||||||
<option value="disable" <?php if ($data['service_rtmp_hls'] == 'disable') echo 'selected'; ?>>Disable</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="dropdown-container">
|
|
||||||
<span class="dropdown-label">DASH :</span>
|
|
||||||
<div class="dropdown">
|
|
||||||
<select name="service_rtmp_dash" id="service_rtmp_dash">
|
|
||||||
<option value="enable" <?php if ($data['service_rtmp_dash'] == 'enable') echo 'selected'; ?>>Enable</option>
|
|
||||||
<option value="disable" <?php if ($data['service_rtmp_dash'] == 'disable') echo 'selected'; ?>>Disable</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<?php for ($i = 1; $i <= 11; $i++):
|
<?php for ($i = 1; $i <= 11; $i++):
|
||||||
$r = $data['rtmp_multiple'][$i];
|
$r = $data['rtmp_multiple'][$i];
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue