Does anyone know how we can format the display id #s to include commas, such as ###,###,###?
If so, do you mind sharing that info?
Commas
Not sure what you are trying to achieve here?
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Ah, now I understand. Try this:
- open display.php in Notepad
- find this line:
- change it to:
Haven't tested it though, let me know if it works.
- open display.php in Notepad
- find this line:
Code: Select all
echo "ccount_link[$id]=$count;\n";
Code: Select all
echo "ccount_link[$id]='".number_format($count)."';\n";
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools