That worked perfectly!
This is what I have now:
<?php $tvisits = luc_StatPressV_Vars("%totalvisitors%");
$reset = 258;
print number_format($reset+$tvisits);
?>
I even tried this:
<?php $tvisits + StatPress_Print(%totalvisitors%); ?>
That displays:
“25893”
That comes out to look like:
“258+93” and not added together… hmmm…
That works perfect.
But here is where I run into a problem:
<?php
$resetnum = 258;
$tvisits = StatPress_Print(%totalvisitors%);
echo $resetnum + $tvisits;
?>
This only displays the reset number of 258 and not the total visitors plus the previous reset number of total visitors. This should be a much higher number.