How to write to the date of publication? More precisely, with what code?
Joomla 1.5.
Those. something like:
Опубликовано: <?php echo $date_publication; ?>
<? echo date('dmY', strtotime($record->created)); ?>
$record
- your record, dmY
- format 24.01.2012
, for others we look at the help to the date
function.
index.php
. - Sh4dowSource: https://ru.stackoverflow.com/questions/73927/
All Articles