Hi, I´m recently a pro member, and wanted to use your API to show total visits of all time, today´s visits, and people right now on my site. As my total number of visits is over one million, my number looks like 1022544, and i want it to look like 1.022.544. How can I do that? Thanks!
That would depend what language you're using for your website.
Since PHP's so popular, here's how in that language, assuming you put that number in a variable called $count:
<?php echo number_format($count, 0, '', '.'); ?>
Sending ...