DAVIAC-web/footer.php

10 lines
250 B
PHP

<div id="footer" class="footer">
<p>site last updated:
<?php
$shell_out = null;
$retval = null;
exec('cd /var/www/daviac ; git show -s --format=%ci', $shell_out, $retval);
print_r($shell_out[0]);
?></p>
</div>