<?php
/**
* the difference between two dates
* copyright : (c) 2012 Andrzej Krokos
* version PHP : 5
* author : shreker983@gmail.com
* licence : GPL
*
*/
?>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$("#responsecontainer").load("diffclass.php");
var refreshId = setInterval(function() {
$("#responsecontainer").load('diffclass.php?randval=' + Math.random());
}, 1000);
$.ajaxSetup({ cache: false });
});
</script>
<div id="responsecontainer"></div>
|