forked from titelies/Plex-Movie-Poster-Display-V1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
32 lines (29 loc) · 1.02 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<html>
<head>
<title></title>
<script type="text/javascript" src="assets/js/jquery-3.0.0.min.js"></script>
<script type="text/javascript" src="assets/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/PieBox.css">
<script>
$(document).ready(
function() {
setInterval(function() {
$.getJSON('getData.php',function(data) {
$.each(data, function(key, val) {
$('#'+key).html(val);
});
});
}, 10000);
});
</script>
</head>
<body>
<div id="container">
<div id="alert" align="center" class="center"></div>
<div id="top" align="center" class="center"></div>
<div id="middle" class="middle"></div>
<div id="bottom" align="center" class="center"></div>
</div>
</body>
</html>