Hi!
This isn't propably very big thing, but I haven't found an answer yet. I want to show date on the site, and I have a code like this:
$today = getdate();
$month = $today['mon'];
$mday = $today['mday'];
$year = $today['year'];
$pvm = <p>$month.$mday.$year</p>;
echo "$pvm";
Now I'm asking how to define variable $pvm (a definition above doesn't work) so that I could present the date in form: 16.9.2002?
Thanks for your help!