Quote:
Originally posted by TECK
i use a different approach me to eliminate completly the lines that have 0 values.
for example, if my specific line it has either "0.0 MB" or "0", i use a line like that:
Code:
if (kbtomb($attach['size']) != '0.0 MB') {
makelabelcode('Attachment Usage:', kbtomb($attach['size']));
}
or
Code:
if ($newusers['count'] != '0') {
makelabelcode('New Users Today:', $newusers['count']);
}
i added this condition to all functions that might give me 0 values. just a tip for those who want to have it more compact the information.
|
Teck, is this already incorporated into the file from the first post? If not, can it be?