<?php
/*
This is the array of the template tags, note what order they are in
as the replacements in the template replacement array need to be
in that order
*/
$templatags = array("<--DATE-->","<--URL-->","<--IMAGES-->");
/*
This is the replacement array
*/
$templareps = array(strftime("%B %d, %Y,<br> %H:%M:%S",time()),URL,"images/");
?>
|