Format date in the indexSuccess.php
I want to format the created_at field date from the original for something like 03.May.2011 to be shown in the indexSuccess.php and in the showSuccess.php Could you help me? thanks You can make in symfony in your indexSuccess.php and showSuccess.php instead of for example: <?php $value->getCreatedAt() ?> next: <?php echo date('d.M.Y', strtotime($value->getCreatedAt())) ?> You can use other formats. The format of some data absolutely not belongs into controller context - so please use use_helper("date"); echo format_date($myDate); from symfony's date helper in your template (showSuccess.php,