Hi guys
I am now using the Smarty template engine
I have run into a little issue.
This my previous code
This displays the next 60 days. My problem is how can I display this in smarty as I need the php code to run the loop around the echo statementPHP Code:$current = time();
for($i = 0; $i < 60; $i++){
$current = strtotime("+1 day", $current);
echo"$current<br />";}
Regards
Chris




Bookmarks