pool/web/yaamp/modules/nicehash/index.php
Tanguy Pruvot bb31cec957 dos2unix all files, we are on linux
trim them, btw... its important to start on a clean base...
2015-07-12 04:40:50 +02:00

37 lines
601 B
PHP

<?php
JavascriptFile('/yaamp/ui/js/auto_refresh.js');
echo "<div id='index_results'>";
echo "<br><br><br><br><br><br><br><br><br><br>";
echo "</div>";
echo "<br><br><br><br><br><br><br><br><br><br>";
echo "<br><br><br><br><br><br><br><br><br><br>";
echo "<br><br><br><br><br><br><br><br><br><br>";
echo "<br><br><br><br><br><br><br><br><br><br>";
echo <<<END
<script>
function page_refresh()
{
index_refresh();
}
function index_ready(data)
{
$('#index_results').html(data);
}
function index_refresh()
{
var url = "/nicehash/index_results";
$.get(url, '', index_ready);
}
</script>
END;