[Resolved [cache issue]] testtags help please

Hi folks,

My testtags are working ok but not showing on the site ok, wll the dates for these tags

In the txt file theres this


$recordhightempmonth = "%recordhightempmonth%";   // Record high temp month
$recordhightempday = "%recordhightempday%";   // Record high temp day
$recordhightempyear = "%recordhightempyear%";   // Record high temp year

In the php theres this output

$recordhightempmonth = "7";   // Record high temp month
$recordhightempday = "25";   // Record high temp day
$recordhightempyear = "2008";   // Record high temp year

on the site its saying 01/01/1970

This also applies to the record low temp as well

the code to display it on the site is this

				<td class="data1" style="text-align: center; font-size: 8pt;">
                  <?php echo $recordhightemp . $uomTemp ?>

                  <?php echo fixup_date($recordhightempday . "/" . $recordhightempmonth . "/" . $recordhightempyear) ?>                  
				</td>
				<td class="data1" style="text-align: center; font-size: 8pt;">
                  <?php echo $recordlowtemp . $uomTemp ?>

                  <?php echo fixup_date($recordlowtempday . "/" . $recordlowtempmonth . "/" . $recordlowtempyear) ?>                  
				</td>

Any advice please?

Are you sure that testtags.php has transferred across onto your server OK, it’s not an old or the default version on there?

Hi Martin

Its deffo upto date m8, this is directly off the server

$recordhightemp = "27.9";   // Record high temp
$recordhightempmonth = "7";   // Record high temp month
$recordhightempday = "25";   // Record high temp day
$recordhightempyear = "2008";   // Record high temp year
$recordlowtemp = "-7.1";   // Record low temp
$recordlowtempmonth = "2";   // Record low temp month
$recordlowtempday = "17";   // Record low temp day
$recordlowtempyear = "2008";   // Record low temp year

Having said that, i just refreshed the page again and now the date
has resolved itself, perhaps it was a cache issue?