Initial commit
This commit is contained in:
52
web/admin.php
Normal file
52
web/admin.php
Normal file
@@ -0,0 +1,52 @@
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
html { background: #505; color: white; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<form method="GET">
|
||||
<input type="hidden" name="auth" value="<?php echo $_GET['auth'] ?>" />
|
||||
<input type="submit" name="action" value="NEXT" />
|
||||
<input type="submit" name="action" value="INFO" />
|
||||
<input type="submit" name="action" value="REFRESH" />
|
||||
</form>
|
||||
<?php
|
||||
include('functions.php');
|
||||
if ($_REQUEST['action']) {
|
||||
echo '<pre>';
|
||||
switch ($_REQUEST['action']) {
|
||||
case 'NEXT':
|
||||
echo telnet_send("dodsorfas(dot)main.skip");
|
||||
break;
|
||||
case 'INFO':
|
||||
cool_print(get_infos(), 'debug');
|
||||
break;
|
||||
case 'DIRE':
|
||||
echo "TODO";
|
||||
break;
|
||||
case 'REQUEST':
|
||||
echo "TODO";
|
||||
break;
|
||||
case 'REFRESH':
|
||||
break;
|
||||
default:
|
||||
print_r($_REQUEST);
|
||||
print_r($_ENV);
|
||||
break;
|
||||
}
|
||||
echo '</pre>';
|
||||
}
|
||||
?>
|
||||
<table border="1">
|
||||
<thead>
|
||||
<th>Title</th>
|
||||
</thead>
|
||||
<?php foreach (get_metadata() as $song) { ?>
|
||||
<tr>
|
||||
<td><?php print($song['right_title']);?> </td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user