<?php

$today = date( 'd-m-Y' );
$text1 = "Azi e $today";  # cu ghilimele
$text2 = 'Azi e $today';  # cu apostrof
 
print $text1;
print "\n<br>\n";
print $text2;