HDMI_PI3B/html/index.php

88 lines
3.4 KiB
PHP

<?php
$json = json_decode(file_get_contents("https://mso.urmic.org/public/list.json"), JSON_UNESCAPED_SLASHES);
$options = "";
foreach ($json as $key => $value) {
$options .= '<option value="' . $value . '">' . $key . '</option>';
}
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$ffplay = 'cvlc --play-and-exit -L --no-video-title-show -f "'. $_POST["ch_select"] .'"';
$file = fopen("/var/www/html/play.sh", "w");
fwrite($file, $ffplay);
fclose($file);
shell_exec("/var/www/html/restart.sh");
}
?>
<html lang="en">
<head>
<title>ShreeBhattJI</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bootstrap.min.css">
<script src="jquery.min.js"></script>
<script>
action = "javascript:void(0);"
</script>
<script src="bootstrap.min.js"></script>
</head>
<body style="margin:3%">
<form class="form-horizontal" method="post">
<fieldset>
<legend>Shree BhattJI From Bhavnagar's Friends Channels</legend>
<div class="form-group">
<label class="col-md-4 control-label" for="ch_select">Select Channels</label>
<div class="col-md-5">
<select id="ch_select" name="ch_select" class="form-control">
<?php echo $options; ?>
</select>
</div>
</div>
<div class="form-group">
<label class="col-md-4 control-label"></label>
<div class="col-md-5">
<input type="checkbox" onchange="document.getElementById('submit').disabled = !this.checked;" />
- By clicking the submit button I agree to defend, indemnify and hold the Devdatt Bhatt aka ShreeBhattJI, its officers, Friends , officials, employees and volunteers harmless from any and all claims, injuries, damages, losses or suits including attorney fees, arising out of transmission of data which comes out of this box .
</div>
</div>
<div class="form-group">
<label class="col-md-4 control-label"></label>
<div class="col-md-4">
<button id="submit" name="submit" class="btn btn-success" disabled>Submit</button>
</div>
</div>
</fieldset>
</form>
<form class="form-horizontal" method="post">
<fieldset>
<legend>CustomLink</legend>
<div class="form-group">
<label class="col-md-4 control-label" for="ch_select">Custom Link</label>
<div class="col-md-5">
<input id="ch_select" name="ch_select" type="text" placeholder="URL" class="form-control input-md" required>
</div>
</div>
<div class="form-group">
<label class="col-md-4 control-label"></label>
<div class="col-md-4">
<button id="submit" name="submit" class="btn btn-success">Submit</button>
</div>
</div>
</fieldset>
</form>
<fieldset>
<legend>About</legend>
<?php echo json_decode(file_get_contents("https://mso.urmic.org/public/data.json"), JSON_UNESCAPED_SLASHES)["data"]; ?>
</fieldset>
</body>
</html>