Cloudlog/application/views/radio/index.php

36 wiersze
672 B
PHP
Czysty Zwykły widok Historia

2012-04-08 15:47:18 +00:00
<script type="text/javascript">
$(document).ready(function(){
setInterval(function() {
// Get Mode
$.get('radio/status/', function(result) {
//$('.status').append(result);
$('.status').html(result);
});
}, 1000);
});
</script>
<div id="container">
<h2><?php echo $page_title; ?></h2>
<?php if($this->session->flashdata('message')) { ?>
<!-- Display Message -->
<div class="alert-message error">
<p><?php echo $this->session->flashdata('message'); ?></p>
</div>
<?php } ?>
2012-04-08 15:47:18 +00:00
<div class="row show-grid">
<div class="span15">
<!-- Display Radio Statuses -->
2012-04-08 15:47:18 +00:00
<table class="status">
</table>
</div>
</div>
</div>