Hello,
I already played a lot with the {-TimeNow.-} variable, but I can't find a way to get dates in this format:
20140322
2014-03-22
Note that I need the 0 above if the month number is lower than 10.
I can achieve this easily with php:
But how about Zenno? Is there a way to run PHP inside it? (Using ProjectMaker).
I already played a lot with the {-TimeNow.-} variable, but I can't find a way to get dates in this format:
20140322
2014-03-22
Note that I need the 0 above if the month number is lower than 10.
I can achieve this easily with php:
PHP:
<?php
echo date("Ymd");
<br>
echo date("Y-m-d");
?>