wiki.techinc.nl/maintenance/counter.php
Ævar Arnfjörð Bjarmason 750d73fb9a * A function for pretty counts
2005-11-01 19:17:31 +00:00

5 lines
103 B
PHP

<?php
function print_c($last, $current) {
echo str_repeat( chr(8), strlen( $last ) ) . $current;
}
?>